python310Packages.requests-cache 0 -> 1 attrpath: python310Packages.requests-cache 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 [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] Going to be running update for following packages: - python3.10-requests-cache-0.9.8 Press Enter key to continue... Running update for: - python3.10-requests-cache-0.9.8: UPDATING ... - python3.10-requests-cache-0.9.8: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/requests-cache/default.nix b/pkgs/development/python-modules/requests-cache/default.nix index f85d2b2debe8..a26b8a3abc3a 100644 --- a/pkgs/development/python-modules/requests-cache/default.nix +++ b/pkgs/development/python-modules/requests-cache/default.nix @@ -26,7 +26,7 @@ buildPythonPackage rec { pname = "requests-cache"; - version = "0.9.8"; + version = "1.1.0"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -35,7 +35,7 @@ buildPythonPackage rec { owner = "requests-cache"; repo = "requests-cache"; rev = "refs/tags/v${version}"; - hash = "sha256-Xbzbwz80xY8IDPDhZEUhmmiCFJZvSQMQ6EmE4EL7QGo="; + hash = "sha256-kJqy7aK67JFtmsrwMtze/wTM9qch9YYj2eUzGJRJreQ="; }; nativeBuildInputs = [ No auto update branch exists Old version 0.9.8" not present in staging derivation file with contents: { lib , attrs , buildPythonPackage , bson , boto3 , botocore , cattrs , fetchFromGitHub , itsdangerous , platformdirs , poetry-core , psutil , pymongo , pytestCheckHook , pytest-rerunfailures , pytest-xdist , pythonOlder , pyyaml , redis , requests , requests-mock , responses , rich , tenacity , time-machine , timeout-decorator , ujson , urllib3 , url-normalize }: buildPythonPackage rec { pname = "requests-cache"; version = "1.1.0"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "requests-cache"; repo = "requests-cache"; rev = "refs/tags/v${version}"; hash = "sha256-kJqy7aK67JFtmsrwMtze/wTM9qch9YYj2eUzGJRJreQ="; }; nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = [ attrs cattrs platformdirs requests urllib3 url-normalize ]; passthru.optional-dependencies = { dynamodb = [ boto3 botocore ]; mongodbo = [ pymongo ]; redis = [ redis ]; bson = [ bson ]; json = [ ujson ]; security = [ itsdangerous ]; yaml = [ pyyaml ]; }; nativeCheckInputs = [ psutil pytestCheckHook pytest-rerunfailures pytest-xdist requests-mock responses rich tenacity time-machine timeout-decorator ] ++ passthru.optional-dependencies.json ++ passthru.optional-dependencies.security; preCheck = '' export HOME=$(mktemp -d); ''; pytestFlagsArray = [ # Integration tests require local DBs "tests/unit" ]; disabledTests = [ # Tests are flaky in the sandbox "test_remove_expired_responses" # Tests that broke with urllib 2.0.5 "test_request_only_if_cached__stale_if_error__expired" "test_stale_if_error__error_code" ]; pythonImportsCheck = [ "requests_cache" ]; meta = with lib; { description = "Persistent cache for requests library"; homepage = "https://github.com/reclosedev/requests-cache"; changelog = "https://github.com/requests-cache/requests-cache/blob/v${version}/HISTORY.md"; license = licenses.bsd3; maintainers = with maintainers; [ fab ]; }; }