python310Packages.urllib3 0 -> 1 attrpath: python310Packages.urllib3 Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/fsif0hhxrw0gh8j4mbjagfln1mpk8mp8-packages.json.drv building '/nix/store/fsif0hhxrw0gh8j4mbjagfln1mpk8mp8-packages.json.drv'... Going to be running update for following packages: - python3.10-urllib3-1.26.12 Press Enter key to continue... Running update for: - python3.10-urllib3-1.26.12: UPDATING ... - python3.10-urllib3-1.26.12: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/urllib3/default.nix b/pkgs/development/python-modules/urllib3/default.nix index ec63f5f21ed..10d761f43d7 100644 --- a/pkgs/development/python-modules/urllib3/default.nix +++ b/pkgs/development/python-modules/urllib3/default.nix @@ -20,12 +20,12 @@ buildPythonPackage rec { pname = "urllib3"; - version = "1.26.12"; + version = "1.26.13"; format = "setuptools"; src = fetchPypi { inherit pname version; - hash = "sha256-P6ls9CPmmHmX/DJq6N85bbKot8ZndH1H3djsupH0p04="; + hash = "sha256-wIPdDc5o2/vhEp1SccuQ+UR96n1SCXxuASYSDFId3qg="; }; # FIXME: remove backwards compatbility hack No auto update branch exists Old version 1.26.12" not present in staging derivation file with contents: { lib , brotli , brotlicffi , buildPythonPackage , certifi , cryptography , fetchPypi , idna , isPyPy , mock , pyopenssl , pysocks , pytest-freezegun , pytest-timeout , pytestCheckHook , python-dateutil , tornado , trustme }: buildPythonPackage rec { pname = "urllib3"; version = "1.26.13"; format = "setuptools"; src = fetchPypi { inherit pname version; hash = "sha256-wIPdDc5o2/vhEp1SccuQ+UR96n1SCXxuASYSDFId3qg="; }; # FIXME: remove backwards compatbility hack propagatedBuildInputs = passthru.optional-dependencies.brotli ++ passthru.optional-dependencies.socks; checkInputs = [ python-dateutil mock pytest-freezegun pytest-timeout pytestCheckHook tornado trustme ]; # 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; preCheck = '' export CI # Increases LONG_TIMEOUT ''; pythonImportsCheck = [ "urllib3" ]; 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 ]; }; meta = with lib; { description = "Powerful, sanity-friendly HTTP client for Python"; homepage = "https://github.com/shazow/urllib3"; changelog = "https://github.com/urllib3/urllib3/blob/${version}/CHANGES.rst"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; }