about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-06-21 07:37:18 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2018-06-22 13:09:45 +0200
commit7093d1fc7a7a27653f1663c7e4f68ba42bf7a410 (patch)
tree39d71d718f21000adb29e59859647b8757fa3541 /pkgs/development/python-modules
parentea1af5b7bc27f22375fb33f85a2cd0ebc936bb35 (diff)
downloadnixlib-7093d1fc7a7a27653f1663c7e4f68ba42bf7a410.tar
nixlib-7093d1fc7a7a27653f1663c7e4f68ba42bf7a410.tar.gz
nixlib-7093d1fc7a7a27653f1663c7e4f68ba42bf7a410.tar.bz2
nixlib-7093d1fc7a7a27653f1663c7e4f68ba42bf7a410.tar.lz
nixlib-7093d1fc7a7a27653f1663c7e4f68ba42bf7a410.tar.xz
nixlib-7093d1fc7a7a27653f1663c7e4f68ba42bf7a410.tar.zst
nixlib-7093d1fc7a7a27653f1663c7e4f68ba42bf7a410.zip
python: stripe: 1.82.1 -> 1.82.2
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/stripe/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/stripe/default.nix b/pkgs/development/python-modules/stripe/default.nix
index 7906bd0069ef..07849b0f30c1 100644
--- a/pkgs/development/python-modules/stripe/default.nix
+++ b/pkgs/development/python-modules/stripe/default.nix
@@ -3,7 +3,7 @@
 
 buildPythonPackage rec {
   pname = "stripe";
-  version = "1.82.1";
+  version = "1.82.2";
 
   # Tests require network connectivity and there's no easy way to disable
   # them. ~ C.
@@ -11,7 +11,7 @@ buildPythonPackage rec {
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "4f4af86e3f556da24609543bda340db932ae1d944018003b164d530c16c27e20";
+    sha256 = "9d0443d772d176faba8c8e8a2ddc3a507861dd7d882b4a88cf6062b20fa5f224";
   };
 
   checkInputs = [ unittest2 mock ];