python310Packages.psutil 5.9.4 -> 5.9.5 https://repology.org/project/python:psutil/versions attrpath: python310Packages.psutil 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 [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/lxfasncrql90j9v6j9iy8nbal9qcwr3c-packages.json.drv building '/nix/store/lxfasncrql90j9v6j9iy8nbal9qcwr3c-packages.json.drv'... Going to be running update for following packages: - python3.10-psutil-5.9.4 Press Enter key to continue... Running update for: - python3.10-psutil-5.9.4: UPDATING ... - python3.10-psutil-5.9.4: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/psutil/default.nix b/pkgs/development/python-modules/psutil/default.nix index c77c31faa96..164e4431748 100644 --- a/pkgs/development/python-modules/psutil/default.nix +++ b/pkgs/development/python-modules/psutil/default.nix @@ -11,14 +11,14 @@ buildPythonPackage rec { pname = "psutil"; - version = "5.9.4"; + version = "5.9.5"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-PX+XOetDXUsTOJRKviP0lYS95TlfJ0h9LuJa2ah3SmI="; + hash = "sha256-VBBjjk3znFTZV/xRzgMEis2ObWCrwPUQevUeX7Vm6zw="; }; buildInputs = No auto update branch exists Old version 5.9.4" not present in staging derivation file with contents: { lib , stdenv , buildPythonPackage , CoreFoundation , fetchPypi , IOKit , pytestCheckHook , python , pythonOlder }: buildPythonPackage rec { pname = "psutil"; version = "5.9.5"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-VBBjjk3znFTZV/xRzgMEis2ObWCrwPUQevUeX7Vm6zw="; }; buildInputs = # workaround for https://github.com/NixOS/nixpkgs/issues/146760 lib.optionals (stdenv.isDarwin && stdenv.isx86_64) [ CoreFoundation ] ++ lib.optionals stdenv.isDarwin [ IOKit ]; nativeCheckInputs = [ pytestCheckHook ]; # Segfaults on darwin: # https://github.com/giampaolo/psutil/issues/1715 doCheck = !stdenv.isDarwin; # In addition to the issues listed above there are some that occure due to # our sandboxing which we can work around by disabling some tests: # - cpu_times was flaky on darwin # - the other disabled tests are likely due to sanboxing (missing specific errors) pytestFlagsArray = [ # Note: $out must be referenced as test import paths are relative "$out/${python.sitePackages}/psutil/tests/test_system.py" ]; disabledTests = [ # Some of the tests have build-system hardware-based impurities (like # reading temperature sensor values). Disable them to avoid the failures # that sometimes result. "cpu_freq" "cpu_times" "disk_io_counters" "sensors_battery" "sensors_temperatures" "user" "test_disk_partitions" # problematic on Hydra's Linux builders, apparently ]; pythonImportsCheck = [ "psutil" ]; meta = with lib; { description = "Process and system utilization information interface"; homepage = "https://github.com/giampaolo/psutil"; changelog = "https://github.com/giampaolo/psutil/blob/release-${version}/HISTORY.rst"; license = licenses.bsd3; maintainers = with maintainers; [ jonringer ]; }; }