Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python3Packages.pytest-httpserver: 0.3.6 -> 0.3.7

+2 -11
+2 -11
pkgs/development/python-modules/pytest-httpserver/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , fetchpatch 5 4 , pytest-asyncio 6 5 , pytest-cov 7 6 , pytestCheckHook ··· 11 10 12 11 buildPythonPackage rec { 13 12 pname = "pytest-httpserver"; 14 - version = "0.3.6"; 13 + version = "0.3.7"; 15 14 16 15 src = fetchPypi { 17 16 pname = "pytest_httpserver"; 18 17 inherit version; 19 - sha256 = "1wdhbzv6x2v4qsqwgsc5660c4lxplh9b61vfj1zqhbhs36y96vl9"; 18 + sha256 = "sha256-YgTcrUlwh2jz0tJdMUgjm8RcqrtpJ/oUQm3SnxUc5Z4="; 20 19 }; 21 - 22 - patches = [ 23 - (fetchpatch { 24 - name = "remove-pytest-runner.patch"; 25 - url = "https://github.com/csernazs/pytest-httpserver/commit/c9752018bc2f13d141dd52c92df75c19ea388836.patch"; 26 - sha256 = "0b76ywzl2gwddbqqlb662mfv5j42l88l5hffm7jbxzvqbz94mx3k"; 27 - }) 28 - ]; 29 20 30 21 propagatedBuildInputs = [ werkzeug ]; 31 22