nixpkgs/pkgs/development/python-modules/requests-toolbelt/default.nix

52 lines
1.1 KiB
Nix

{
lib,
betamax,
buildPythonPackage,
fetchPypi,
pyopenssl,
pytestCheckHook,
requests,
setuptools,
trustme,
}:
buildPythonPackage (finalAttrs: {
pname = "requests-toolbelt";
version = "1.0.0";
pyproject = true;
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-doGgo9BHAStb3A7jfX+PB+vnarCMrsz8OSHOI8iNW8Y=";
};
build-system = [ setuptools ];
dependencies = [ requests ];
nativeCheckInputs = [
betamax
pyopenssl
pytestCheckHook
trustme
];
disabledTests = [
# incompatible with urllib3 2.0
"test_dump_response"
"test_dump_all"
"test_prepared_request_override_base"
"test_prepared_request_with_base"
"test_request_override_base"
"test_request_with_base"
];
pythonImportsCheck = [ "requests_toolbelt" ];
meta = {
description = "Toolbelt of useful classes and functions to be used with requests";
homepage = "http://toolbelt.rtfd.org";
changelog = "https://github.com/requests/toolbelt/blob/${finalAttrs.version}/HISTORY.rst";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ matthiasbeyer ];
};
})