python311Packages.keystoneauth1 0 -> 1 attrpath: python311Packages.keystoneauth1 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] this derivation will be built: /nix/store/cy0wmk6k4128bpchck6k3knra0in6js1-packages.json.drv building '/nix/store/cy0wmk6k4128bpchck6k3knra0in6js1-packages.json.drv'... Going to be running update for following packages: - python3.11-keystoneauth1-5.4.0 Press Enter key to continue... Running update for: - python3.11-keystoneauth1-5.4.0: UPDATING ... - python3.11-keystoneauth1-5.4.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/keystoneauth1/default.nix b/pkgs/development/python-modules/keystoneauth1/default.nix index c3e13d8b0fc4..412080ba846f 100644 --- a/pkgs/development/python-modules/keystoneauth1/default.nix +++ b/pkgs/development/python-modules/keystoneauth1/default.nix @@ -25,12 +25,12 @@ buildPythonPackage rec { pname = "keystoneauth1"; - version = "5.4.0"; + version = "5.6.0"; pyproject= true; src = fetchPypi { inherit pname version; - hash = "sha256-GsE0FRzrAuULaK143smCG/if5TvTb8hlhQHEewfL31M="; + hash = "sha256-7LfzR1nr4QPbNyqwlTwLghkp3dSX8zKqaz72yqz/7Yg="; }; postPatch = '' No auto update branch exists Old version 5.4.0" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , betamax , hacking , iso8601 , lxml , oauthlib , os-service-types , oslo-config , oslo-utils , pbr , pycodestyle , pyyaml , requests , requests-kerberos , requests-mock , setuptools , six , stestr , stevedore , testresources , testtools }: buildPythonPackage rec { pname = "keystoneauth1"; version = "5.6.0"; pyproject= true; src = fetchPypi { inherit pname version; hash = "sha256-7LfzR1nr4QPbNyqwlTwLghkp3dSX8zKqaz72yqz/7Yg="; }; postPatch = '' # only a small portion of the listed packages are actually needed for running the tests # so instead of removing them one by one remove everything rm test-requirements.txt ''; nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ betamax iso8601 lxml oauthlib os-service-types pbr requests requests-kerberos six stevedore ]; nativeCheckInputs = [ hacking oslo-config oslo-utils pycodestyle pyyaml requests-mock stestr testresources testtools ]; # test_keystoneauth_betamax_fixture is incompatible with urllib3 2.0.0 # https://bugs.launchpad.net/keystoneauth/+bug/2020112 checkPhase = '' stestr run \ -E "keystoneauth1.tests.unit.test_betamax_fixture.TestBetamaxFixture.test_keystoneauth_betamax_fixture" ''; pythonImportsCheck = [ "keystoneauth1" ]; meta = with lib; { description = "Authentication Library for OpenStack Identity"; homepage = "https://github.com/openstack/keystoneauth"; license = licenses.asl20; maintainers = teams.openstack.members; }; }