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
1
{ lib
2
2
, buildPythonPackage
3
3
, fetchPypi
4
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
14
-
version = "0.3.6";
13
13
+
version = "0.3.7";
15
14
16
15
src = fetchPypi {
17
16
pname = "pytest_httpserver";
18
17
inherit version;
19
19
-
sha256 = "1wdhbzv6x2v4qsqwgsc5660c4lxplh9b61vfj1zqhbhs36y96vl9";
18
18
+
sha256 = "sha256-YgTcrUlwh2jz0tJdMUgjm8RcqrtpJ/oUQm3SnxUc5Z4=";
20
19
};
21
21
-
22
22
-
patches = [
23
23
-
(fetchpatch {
24
24
-
name = "remove-pytest-runner.patch";
25
25
-
url = "https://github.com/csernazs/pytest-httpserver/commit/c9752018bc2f13d141dd52c92df75c19ea388836.patch";
26
26
-
sha256 = "0b76ywzl2gwddbqqlb662mfv5j42l88l5hffm7jbxzvqbz94mx3k";
27
27
-
})
28
28
-
];
29
20
30
21
propagatedBuildInputs = [ werkzeug ];
31
22