python.pkgs.pytest-httpbin: 0.2.3 -> 0.3.0

This commit is contained in:
Frederik Rietdijk 2018-01-20 11:52:54 +01:00
parent b3eea7ab9c
commit 48eab55d8b

View File

@ -11,21 +11,17 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "pytest-httpbin"; pname = "pytest-httpbin";
name = "${pname}-${version}"; version = "0.3.0";
version = "0.2.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "kevin1024"; owner = "kevin1024";
repo = "pytest-httpbin"; repo = "pytest-httpbin";
rev = "v${version}"; rev = "v${version}";
sha256 = "0j3n12jjy8cm0va8859wqra6abfyajrgh2qj8bhcngf3a72zl9ks"; sha256 = "0p86ljx775gxxicscs1dydmmx92r1g9bs00vdvxrsl3qdll1ksfm";
}; };
checkPhase = '' checkInputs = [ pytest ];
py.test -k "not test_chunked_encoding"
'';
buildInputs = [ pytest ];
propagatedBuildInputs = [ flask decorator httpbin six requests ]; propagatedBuildInputs = [ flask decorator httpbin six requests ];
meta = { meta = {