depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-httpbin/default.nix
Default email 2c76a4cb41 Project import generated by Copybara.
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
2023-11-16 04:20:00 +00:00

57 lines
1 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, httpbin
, pytest
, pytestCheckHook
, pythonOlder
, requests
, six
}:
buildPythonPackage rec {
pname = "pytest-httpbin";
version = "2.0.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "kevin1024";
repo = "pytest-httpbin";
rev = "refs/tags/v${version}";
hash = "sha256-tq9nz2na94HkLACt7xB1MUanh9/JOoe2vyEm5sAq0/4=";
};
buildInputs = [
pytest
];
propagatedBuildInputs = [
httpbin
six
];
nativeCheckInputs = [
pytestCheckHook
requests
];
disabledTests = [
# incompatible with flask 2.3
"test_redirect_location_is_https_for_secure_server"
];
__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";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}