12 buildPythonPackage rec {
13 pname = "pytest-httpbin";
15 format = "setuptools";
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
21 repo = "pytest-httpbin";
22 rev = "refs/tags/v${version}";
23 hash = "sha256-tq9nz2na94HkLACt7xB1MUanh9/JOoe2vyEm5sAq0/4=";
30 propagatedBuildInputs = [
41 # incompatible with flask 2.3
42 "test_redirect_location_is_https_for_secure_server"
45 __darwinAllowLocalNetworking = true;
47 pythonImportsCheck = [
52 description = "Test your HTTP library against a local copy of httpbin.org";
53 homepage = "https://github.com/kevin1024/pytest-httpbin";
54 license = licenses.mit;
55 maintainers = with maintainers; [ ];