python310Packages.requests 0 -> 1 attrpath: python310Packages.requests 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/2nmhwpdn4wzlgyw5xglfj328fs38x23h-packages.json.drv building '/nix/store/2nmhwpdn4wzlgyw5xglfj328fs38x23h-packages.json.drv'... Going to be running update for following packages: - python3.10-requests-2.28.1 Press Enter key to continue... Running update for: - python3.10-requests-2.28.1: UPDATING ... - python3.10-requests-2.28.1: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/requests/default.nix b/pkgs/development/python-modules/requests/default.nix index 8f68f1459e5..30a43aad6ba 100644 --- a/pkgs/development/python-modules/requests/default.nix +++ b/pkgs/development/python-modules/requests/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { pname = "requests"; - version = "2.28.1"; + version = "2.28.2"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -26,7 +26,7 @@ buildPythonPackage rec { src = fetchPypi { inherit pname version; - hash = "sha256-fFWZsQL+3apmHIJsVqtP7ii/0X9avKHrvj5/GdfJeYM="; + hash = "sha256-mLGyeC48bEkEk4uEwOuTJyEGnf25E0MTvv98g8LfJL8="; }; patches = [ No auto update branch exists Old version 2.28.1" not present in staging derivation file with contents: { lib , stdenv , brotlicffi , buildPythonPackage , certifi , chardet , charset-normalizer , fetchPypi , fetchpatch , idna , pysocks , pytest-mock , pytest-xdist , pytestCheckHook , pythonOlder , urllib3 }: buildPythonPackage rec { pname = "requests"; version = "2.28.2"; format = "setuptools"; disabled = pythonOlder "3.7"; __darwinAllowLocalNetworking = true; src = fetchPypi { inherit pname version; hash = "sha256-mLGyeC48bEkEk4uEwOuTJyEGnf25E0MTvv98g8LfJL8="; }; propagatedBuildInputs = [ brotlicffi certifi charset-normalizer idna urllib3 ]; passthru.optional-dependencies = { security = []; socks = [ pysocks ]; use_chardet_on_py3 = [ chardet ]; }; nativeCheckInputs = [ pytest-mock pytest-xdist pytestCheckHook ] ++ passthru.optional-dependencies.socks; disabledTests = [ # Disable tests that require network access and use httpbin "requests.api.request" "requests.models.PreparedRequest" "requests.sessions.Session" "requests" "test_redirecting_to_bad_url" "test_requests_are_updated_each_time" "test_should_bypass_proxies_pass_only_hostname" "test_urllib3_pool_connection_closed" "test_urllib3_retries" "test_use_proxy_from_environment" "TestRequests" "TestTimeout" ] ++ lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [ # Fatal Python error: Aborted "test_basic_response" "test_text_response" ]; disabledTestPaths = lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [ # Fatal Python error: Aborted "tests/test_lowlevel.py" ]; pythonImportsCheck = [ "requests" ]; meta = with lib; { description = "HTTP library for Python"; homepage = "http://docs.python-requests.org/"; changelog = "https://github.com/psf/requests/blob/v${version}/HISTORY.md"; license = licenses.asl20; maintainers = with maintainers; [ fab ]; }; }