summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pytest-httpserver
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-02-05 12:09:11 +0100
committerGitHub <noreply@github.com>2021-02-05 12:09:11 +0100
commit385fc8362b8abe5aa03f50c60b9a779ce721db19 (patch)
tree3bf32e5c855536aff1f0a65d37cc04ff8743e97a /pkgs/development/python-modules/pytest-httpserver
parent8ce18984a1fe53dac1ada167fb5d4551826d825f (diff)
parentcd9e9ea67d04db32bb600f92cdd0495d46fc2999 (diff)
Merge pull request #111966 from fabaff/bump-pytest-httpserver
python3Packages.pytest-httpserver: 0.3.6 -> 0.3.7
Diffstat (limited to 'pkgs/development/python-modules/pytest-httpserver')
-rw-r--r--pkgs/development/python-modules/pytest-httpserver/default.nix13
1 files changed, 2 insertions, 11 deletions
diff --git a/pkgs/development/python-modules/pytest-httpserver/default.nix b/pkgs/development/python-modules/pytest-httpserver/default.nix
index 143d90e2f46b..f790629a29cf 100644
--- a/pkgs/development/python-modules/pytest-httpserver/default.nix
+++ b/pkgs/development/python-modules/pytest-httpserver/default.nix
@@ -1,7 +1,6 @@
{ lib
, buildPythonPackage
, fetchPypi
-, fetchpatch
, pytest-asyncio
, pytest-cov
, pytestCheckHook
@@ -11,22 +10,14 @@
buildPythonPackage rec {
pname = "pytest-httpserver";
- version = "0.3.6";
+ version = "0.3.7";
src = fetchPypi {
pname = "pytest_httpserver";
inherit version;
- sha256 = "1wdhbzv6x2v4qsqwgsc5660c4lxplh9b61vfj1zqhbhs36y96vl9";
+ sha256 = "sha256-YgTcrUlwh2jz0tJdMUgjm8RcqrtpJ/oUQm3SnxUc5Z4=";
};
- patches = [
- (fetchpatch {
- name = "remove-pytest-runner.patch";
- url = "https://github.com/csernazs/pytest-httpserver/commit/c9752018bc2f13d141dd52c92df75c19ea388836.patch";
- sha256 = "0b76ywzl2gwddbqqlb662mfv5j42l88l5hffm7jbxzvqbz94mx3k";
- })
- ];
-
propagatedBuildInputs = [ werkzeug ];
checkInputs = [