python312Packages.oslo-config 9.2.0 -> 9.4.0 https://repology.org/project/python:oslo-config/versions attrpath: python312Packages.oslo-config 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/mn72pmfzjj0kpkwrcf5i9prizlprqanb-packages.json.drv building '/nix/store/mn72pmfzjj0kpkwrcf5i9prizlprqanb-packages.json.drv'... Going to be running update for following packages: - python3.12-oslo-config-9.2.0 Press Enter key to continue... Running update for: - python3.12-oslo-config-9.2.0: UPDATING ... - python3.12-oslo-config-9.2.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/oslo-config/default.nix b/pkgs/development/python-modules/oslo-config/default.nix index 11384932218d..f73090cf812a 100644 --- a/pkgs/development/python-modules/oslo-config/default.nix +++ b/pkgs/development/python-modules/oslo-config/default.nix @@ -14,13 +14,13 @@ buildPythonPackage rec { pname = "oslo-config"; - version = "9.2.0"; + version = "9.4.0"; format = "setuptools"; src = fetchPypi { pname = "oslo.config"; inherit version; - hash = "sha256-/+sBymWmA9VSWQXxqIozGb4Jzixqw3bEMSquwoMJWHg="; + hash = "sha256-NbEaZhtgjttQMF2tkeTjCBnZDveUt9fbpb2LLvLrjA0="; }; postPatch = '' No auto update branch exists Old version 9.2.0" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , debtcollector , netaddr , oslo-i18n , pbr , pyyaml , requests , rfc3986 , stevedore , callPackage }: buildPythonPackage rec { pname = "oslo-config"; version = "9.4.0"; format = "setuptools"; src = fetchPypi { pname = "oslo.config"; inherit version; hash = "sha256-NbEaZhtgjttQMF2tkeTjCBnZDveUt9fbpb2LLvLrjA0="; }; 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 ''; propagatedBuildInputs = [ debtcollector netaddr oslo-i18n pbr pyyaml requests rfc3986 stevedore ]; # check in passthru.tests.pytest to escape infinite recursion with other oslo components doCheck = false; passthru.tests = { tests = callPackage ./tests.nix {}; }; pythonImportsCheck = [ "oslo_config" ]; meta = with lib; { description = "Oslo Configuration API"; homepage = "https://github.com/openstack/oslo.config"; license = licenses.asl20; maintainers = teams.openstack.members; }; }