python311Packages.stestr 4.0.1 -> 4.1.0 https://repology.org/project/python:stestr/versions attrpath: python311Packages.stestr 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/xkp4723yphpi8v1h4hnh1k9xmz2010sn-packages.json.drv building '/nix/store/xkp4723yphpi8v1h4hnh1k9xmz2010sn-packages.json.drv'... Going to be running update for following packages: - python3.11-stestr-4.0.1 Press Enter key to continue... Running update for: - python3.11-stestr-4.0.1: UPDATING ... - python3.11-stestr-4.0.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/stestr/default.nix b/pkgs/development/python-modules/stestr/default.nix index 160b3d15b113..40b4a4890c7b 100644 --- a/pkgs/development/python-modules/stestr/default.nix +++ b/pkgs/development/python-modules/stestr/default.nix @@ -13,12 +13,12 @@ buildPythonPackage rec { pname = "stestr"; - version = "4.0.1"; + version = "4.1.0"; format = "setuptools"; src = fetchPypi { inherit pname version; - hash = "sha256-wsHHO/x8/KORJxWeP7x0GTrr8s0C2KBCfy5YZI42zyY="; + hash = "sha256-X2HDae7OY8KS0TWZ4SqhWK92hZkGQ/JN1vp/q/406Yo="; }; postPatch = '' No auto update branch exists Old version 4.0.1" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , cliff , fixtures , future , pbr , setuptools , subunit , testtools , tomlkit , voluptuous , callPackage }: buildPythonPackage rec { pname = "stestr"; version = "4.1.0"; pyproject = true; src = fetchPypi { inherit pname version; hash = "sha256-X2HDae7OY8KS0TWZ4SqhWK92hZkGQ/JN1vp/q/406Yo="; }; 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 = [ pbr setuptools ]; propagatedBuildInputs = [ cliff fixtures future pbr subunit testtools tomlkit voluptuous ]; # check in passthru.tests.pytest to escape infinite recursion with other oslo components doCheck = false; passthru.tests = { tests = callPackage ./tests.nix { }; }; pythonImportsCheck = [ "stestr" ]; meta = with lib; { description = "A parallel Python test runner built around subunit"; homepage = "https://github.com/mtreinish/stestr"; license = licenses.asl20; maintainers = teams.openstack.members; }; }