python311Packages.setproctitle 1.3.2 -> 1.3.3 https://repology.org/project/python:setproctitle/versions attrpath: python311Packages.setproctitle 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/3762a3icbjnh6q7d13kl7zb0s8wqqa5b-packages.json.drv building '/nix/store/3762a3icbjnh6q7d13kl7zb0s8wqqa5b-packages.json.drv'... Going to be running update for following packages: - python3.11-setproctitle-1.3.2 Press Enter key to continue... Running update for: - python3.11-setproctitle-1.3.2: UPDATING ... - python3.11-setproctitle-1.3.2: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/setproctitle/default.nix b/pkgs/development/python-modules/setproctitle/default.nix index 09d29ad34533..8f9edabfe647 100644 --- a/pkgs/development/python-modules/setproctitle/default.nix +++ b/pkgs/development/python-modules/setproctitle/default.nix @@ -7,14 +7,14 @@ buildPythonPackage rec { pname = "setproctitle"; - version = "1.3.2"; + version = "1.3.3"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - hash = "sha256-ufuXkHyDDSYPoGWO1Yr9SKhrK4iqxSETXDUv9/00d/0="; + hash = "sha256-yRPhUefqAVZ4N/8DeiPKh0AZKIAZi3+7kLFtGBYHyq4="; }; nativeCheckInputs = [ pytestCheckHook ]; No auto update branch exists Old version 1.3.2" not present in staging derivation file with contents: { lib , buildPythonPackage , pythonOlder , fetchPypi , setuptools , pytestCheckHook }: buildPythonPackage rec { pname = "setproctitle"; version = "1.3.3"; pyproject = true; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; hash = "sha256-yRPhUefqAVZ4N/8DeiPKh0AZKIAZi3+7kLFtGBYHyq4="; }; nativeBuildInputs = [ setuptools ]; nativeCheckInputs = [ pytestCheckHook ]; # tries to compile programs with dependencies that aren't available disabledTestPaths = [ "tests/setproctitle_test.py" ]; meta = with lib; { description = "Allows a process to change its title (as displayed by system tools such as ps and top)"; homepage = "https://github.com/dvarrazzo/py-setproctitle"; license = licenses.bsdOriginal; maintainers = with maintainers; [ exi ]; }; }