57 lines
1.2 KiB
Nix
57 lines
1.2 KiB
Nix
|
{
|
||
|
lib,
|
||
|
buildPythonPackage,
|
||
|
fetchFromGitHub,
|
||
|
httpbin,
|
||
|
pytest,
|
||
|
pytestCheckHook,
|
||
|
pythonOlder,
|
||
|
requests,
|
||
|
setuptools,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "pytest-httpbin";
|
||
|
version = "2.0.0";
|
||
|
pyproject = true;
|
||
|
|
||
|
disabled = pythonOlder "3.7";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "kevin1024";
|
||
|
repo = "pytest-httpbin";
|
||
|
rev = "refs/tags/v${version}";
|
||
|
hash = "sha256-tq9nz2na94HkLACt7xB1MUanh9/JOoe2vyEm5sAq0/4=";
|
||
|
};
|
||
|
|
||
|
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 = with lib; {
|
||
|
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 = licenses.mit;
|
||
|
maintainers = [ ];
|
||
|
};
|
||
|
}
|