tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.pytest-httpserver: 0.3.6 -> 0.3.7
Fabian Affolter
5 years ago
cd9e9ea6
507b3009
+2
-11
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
pytest-httpserver
default.nix
+2
-11
pkgs/development/python-modules/pytest-httpserver/default.nix
···
1
{ lib
2
, buildPythonPackage
3
, fetchPypi
4
-
, fetchpatch
5
, pytest-asyncio
6
, pytest-cov
7
, pytestCheckHook
···
11
12
buildPythonPackage rec {
13
pname = "pytest-httpserver";
14
-
version = "0.3.6";
15
16
src = fetchPypi {
17
pname = "pytest_httpserver";
18
inherit version;
19
-
sha256 = "1wdhbzv6x2v4qsqwgsc5660c4lxplh9b61vfj1zqhbhs36y96vl9";
20
};
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
30
propagatedBuildInputs = [ werkzeug ];
31
···
1
{ lib
2
, buildPythonPackage
3
, fetchPypi
0
4
, pytest-asyncio
5
, pytest-cov
6
, pytestCheckHook
···
10
11
buildPythonPackage rec {
12
pname = "pytest-httpserver";
13
+
version = "0.3.7";
14
15
src = fetchPypi {
16
pname = "pytest_httpserver";
17
inherit version;
18
+
sha256 = "sha256-YgTcrUlwh2jz0tJdMUgjm8RcqrtpJ/oUQm3SnxUc5Z4=";
19
};
0
0
0
0
0
0
0
0
20
21
propagatedBuildInputs = [ werkzeug ];
22