blob: 35117fa9c07dc6fa4fa87e35296784cc873016ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
httpbin,
pytest,
pytestCheckHook,
requests,
setuptools,
}:
buildPythonPackage rec {
pname = "pytest-httpbin";
version = "2.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "kevin1024";
repo = "pytest-httpbin";
tag = "v${version}";
hash = "sha256-gESU1SDpqSQs8GRcGJclWM0WpS4DZicfdtwxk2sQubQ=";
};
build-system = [ setuptools ];
buildInputs = [ pytest ];
propagatedBuildInputs = [ httpbin ];
nativeCheckInputs = [
pytestCheckHook
requests
];
disabledTests = [
# incompatible with flask 2.3
"test_redirect_location_is_https_for_secure_server"
# Timeout on Hydra
"test_dont_crash_on_handshake_timeout"
];
__darwinAllowLocalNetworking = true;
pythonImportsCheck = [ "pytest_httpbin" ];
meta = {
description = "Test your HTTP library against a local copy of httpbin.org";
homepage = "https://github.com/kevin1024/pytest-httpbin";
changelog = "https://github.com/kevin1024/pytest-httpbin/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|