summary refs log tree commit diff
path: root/pkgs/development/python-modules/httpbin
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-12-30 12:23:32 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2017-12-31 10:55:06 +0100
commit0a447a6a3da3087b9ca6ebf3ce1eb277d41cdebd (patch)
treed1d7adc0b41fde7d21867bfa5249044cef8b1a75 /pkgs/development/python-modules/httpbin
parent08ebd1618b8e855bc36fb36af3009bae3a8aa75f (diff)
downloadnixpkgs-0a447a6a3da3087b9ca6ebf3ce1eb277d41cdebd.tar
nixpkgs-0a447a6a3da3087b9ca6ebf3ce1eb277d41cdebd.tar.gz
nixpkgs-0a447a6a3da3087b9ca6ebf3ce1eb277d41cdebd.tar.bz2
nixpkgs-0a447a6a3da3087b9ca6ebf3ce1eb277d41cdebd.tar.lz
nixpkgs-0a447a6a3da3087b9ca6ebf3ce1eb277d41cdebd.tar.xz
nixpkgs-0a447a6a3da3087b9ca6ebf3ce1eb277d41cdebd.tar.zst
nixpkgs-0a447a6a3da3087b9ca6ebf3ce1eb277d41cdebd.zip
python: httpbin: 0.5.0 -> 0.6.2
Diffstat (limited to 'pkgs/development/python-modules/httpbin')
-rw-r--r--pkgs/development/python-modules/httpbin/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/httpbin/default.nix b/pkgs/development/python-modules/httpbin/default.nix
index d11d6b3668f..2f24a1ab72b 100644
--- a/pkgs/development/python-modules/httpbin/default.nix
+++ b/pkgs/development/python-modules/httpbin/default.nix
@@ -10,12 +10,12 @@
 
 buildPythonPackage rec {
   pname = "httpbin";
-  version = "0.5.0";
+  version = "0.6.2";
   name = "${pname}-${version}";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "6b57f563900ecfe126015223a259463848daafbdc2687442317c0992773b9054";
+    sha256 = "0afa0486a76305cac441b5cc80d5d4ccd82b20875da7c5119ecfe616cefef45f";
   };
 
   propagatedBuildInputs = [ flask markupsafe decorator itsdangerous six ];