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

93 lines
2 KiB
Nix

{ lib
, backports-zoneinfo
, brotli
, brotlicffi
, buildPythonPackage
, certifi
, cryptography
, fetchPypi
, hatchling
, idna
, isPyPy
, pyopenssl
, pysocks
, pytest-timeout
, pytestCheckHook
, pythonOlder
, tornado
, trustme
}:
let self = buildPythonPackage rec {
pname = "urllib3";
version = "2.0.7";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-yX394fe9Q6ccjSpY42npsr9pLRM06p+crlWt19DdD4Q=";
};
nativeBuildInputs = [
hatchling
];
passthru.optional-dependencies = {
brotli = if isPyPy then [
brotlicffi
] else [
brotli
];
# Use carefully since pyopenssl is not supported aarch64-darwin
secure = [
certifi
cryptography
idna
pyopenssl
];
socks = [
pysocks
];
};
nativeCheckInputs = [
pytest-timeout
pytestCheckHook
tornado
trustme
] ++ lib.optionals (pythonOlder "3.9") [
backports-zoneinfo
] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
# Tests in urllib3 are mostly timeout-based instead of event-based and
# are therefore inherently flaky. On your own machine, the tests will
# typically build fine, but on a loaded cluster such as Hydra random
# timeouts will occur.
#
# The urllib3 test suite has two different timeouts in their test suite
# (see `test/__init__.py`):
# - SHORT_TIMEOUT
# - LONG_TIMEOUT
# When CI is in the env, LONG_TIMEOUT will be significantly increased.
# Still, failures can occur and for that reason tests are disabled.
doCheck = false;
passthru.tests.pytest = self.overridePythonAttrs (_: { doCheck = true; });
preCheck = ''
export CI # Increases LONG_TIMEOUT
'';
pythonImportsCheck = [
"urllib3"
];
meta = with lib; {
description = "Powerful, user-friendly HTTP client for Python";
homepage = "https://github.com/urllib3/urllib3";
changelog = "https://github.com/urllib3/urllib3/blob/${version}/CHANGES.rst";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
};
in self