about summary refs log tree commit diff
path: root/pkgs/development/python-modules/httpretty
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2021-06-18 23:47:22 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2021-06-22 13:42:31 +0200
commit6ddc04c966325340ed84d8bd83be9cd8e480cbf5 (patch)
tree789c6153f7086ba2c26ca208121f6b16ab44d02a /pkgs/development/python-modules/httpretty
parent6cd63274f1a8c1bc97fa51cfeda896b519a9a68c (diff)
python3Packages.httpretty: 1.0.5 -> 1.1.3
Diffstat (limited to 'pkgs/development/python-modules/httpretty')
-rw-r--r--pkgs/development/python-modules/httpretty/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/httpretty/default.nix b/pkgs/development/python-modules/httpretty/default.nix
index b4a82d04fa18e..f0c0b9b2ee99c 100644
--- a/pkgs/development/python-modules/httpretty/default.nix
+++ b/pkgs/development/python-modules/httpretty/default.nix
@@ -19,7 +19,7 @@
 
 buildPythonPackage rec {
   pname = "httpretty";
-  version = "1.0.5";
+  version = "1.1.3";
 
   # drop this for version > 0.9.7
   # Flaky tests: https://github.com/gabrielfalcao/HTTPretty/pull/394
@@ -27,7 +27,7 @@ buildPythonPackage rec {
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "e53c927c4d3d781a0761727f1edfad64abef94e828718e12b672a678a8b3e0b5";
+    sha256 = "229ade39175ea4324e767f29dc24e5f846fbc72bf80e1a919b2547a6574ff601";
   };
 
   propagatedBuildInputs = [ six ];