summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-httpbin
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-01-20 11:52:54 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2018-01-20 12:05:22 +0100
commit48eab55d8bb92d56572d490ed6a167c0792cf9a5 (patch)
treec7e45dec784af7b04d21152ca53e842ccf331992 /pkgs/development/python-modules/pytest-httpbin
parentb3eea7ab9c03495d81da9f72ab0905f9238d3a1a (diff)
downloadnixlib-48eab55d8bb92d56572d490ed6a167c0792cf9a5.tar
nixlib-48eab55d8bb92d56572d490ed6a167c0792cf9a5.tar.gz
nixlib-48eab55d8bb92d56572d490ed6a167c0792cf9a5.tar.bz2
nixlib-48eab55d8bb92d56572d490ed6a167c0792cf9a5.tar.lz
nixlib-48eab55d8bb92d56572d490ed6a167c0792cf9a5.tar.xz
nixlib-48eab55d8bb92d56572d490ed6a167c0792cf9a5.tar.zst
nixlib-48eab55d8bb92d56572d490ed6a167c0792cf9a5.zip
python.pkgs.pytest-httpbin: 0.2.3 -> 0.3.0
Diffstat (limited to 'pkgs/development/python-modules/pytest-httpbin')
-rw-r--r--pkgs/development/python-modules/pytest-httpbin/default.nix10
1 files changed, 3 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/pytest-httpbin/default.nix b/pkgs/development/python-modules/pytest-httpbin/default.nix
index 6f6f79109d9b..caa2c27e3f85 100644
--- a/pkgs/development/python-modules/pytest-httpbin/default.nix
+++ b/pkgs/development/python-modules/pytest-httpbin/default.nix
@@ -11,21 +11,17 @@
 
 buildPythonPackage rec {
   pname = "pytest-httpbin";
-  name = "${pname}-${version}";
-  version = "0.2.3";
+  version = "0.3.0";
 
   src = fetchFromGitHub {
     owner = "kevin1024";
     repo = "pytest-httpbin";
     rev = "v${version}";
-    sha256 = "0j3n12jjy8cm0va8859wqra6abfyajrgh2qj8bhcngf3a72zl9ks";
+    sha256 = "0p86ljx775gxxicscs1dydmmx92r1g9bs00vdvxrsl3qdll1ksfm";
   };
 
-  checkPhase = ''
-    py.test -k "not test_chunked_encoding"
-  '';
+  checkInputs = [ pytest ];
 
-  buildInputs = [ pytest ];
   propagatedBuildInputs = [ flask decorator httpbin six requests ];
 
   meta = {