nixpkgs/pkgs/development/python-modules/requests-toolbelt/default.nix
Martin Weinelt c79d8276b7 python311Packages.requests-toolbelt: disable failing tests
A number of tests started failing after bumping urllib3 past version
2.0.
2023-09-27 15:34:40 +02:00

54 lines
1.1 KiB
Nix

{ lib
, betamax
, buildPythonPackage
, fetchPypi
, pyopenssl
, pytestCheckHook
, requests
, trustme
}:
buildPythonPackage rec {
pname = "requests-toolbelt";
version = "1.0.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-doGgo9BHAStb3A7jfX+PB+vnarCMrsz8OSHOI8iNW8Y=";
};
propagatedBuildInputs = [
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 = with lib; {
description = "Toolbelt of useful classes and functions to be used with requests";
homepage = "http://toolbelt.rtfd.org";
changelog = "https://github.com/requests/toolbelt/blob/${version}/HISTORY.rst";
license = licenses.asl20;
maintainers = with maintainers; [ matthiasbeyer ];
};
}