depot/third_party/nixpkgs/pkgs/development/python-modules/responses/default.nix

61 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytest-asyncio,
pytest-httpserver,
pytestCheckHook,
pythonOlder,
pyyaml,
requests,
setuptools,
tomli,
tomli-w,
types-pyyaml,
types-toml,
urllib3,
}:
buildPythonPackage rec {
pname = "responses";
version = "0.25.3";
pyproject = true;
disabled = pythonOlder "3.8";
__darwinAllowLocalNetworking = true;
src = fetchFromGitHub {
owner = "getsentry";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-+iRrmRAe8RWcts2LMFvykroQ5sL7+hW6Wrs7Kd1mzBM=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
pyyaml
requests
types-pyyaml
types-toml
urllib3
];
nativeCheckInputs = [
pytest-asyncio
pytest-httpserver
pytestCheckHook
tomli-w
] ++ lib.optionals (pythonOlder "3.11") [ tomli ];
pythonImportsCheck = [ "responses" ];
meta = with lib; {
description = "Python module for mocking out the requests Python library";
homepage = "https://github.com/getsentry/responses";
changelog = "https://github.com/getsentry/responses/blob/${version}/CHANGES";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}