python310Packages.pytest-xdist 0 -> 1 attrpath: python310Packages.pytest-xdist 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/8i9an4hq9vjanba600gl5d6z2lnnvh7n-packages.json.drv building '/nix/store/8i9an4hq9vjanba600gl5d6z2lnnvh7n-packages.json.drv'... Going to be running update for following packages: - python3.10-pytest-xdist-2.5.0 Press Enter key to continue... Running update for: - python3.10-pytest-xdist-2.5.0: UPDATING ... - python3.10-pytest-xdist-2.5.0: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/pytest-xdist/default.nix b/pkgs/development/python-modules/pytest-xdist/default.nix index b17b6f2f763..7410f9003b5 100644 --- a/pkgs/development/python-modules/pytest-xdist/default.nix +++ b/pkgs/development/python-modules/pytest-xdist/default.nix @@ -14,12 +14,12 @@ buildPythonPackage rec { pname = "pytest-xdist"; - version = "2.5.0"; + version = "3.1.0"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - sha256 = "sha256-RYDeyj/wTdsqxT66Oddstd1e3qwFDLb7x2iw3XErTt8="; + sha256 = "sha256-QP2481RJIcXfzUhqwIDOIocOcdgs7W0uePqXwq3dSAw="; }; nativeBuildInputs = [ setuptools-scm ]; No auto update branch exists Old version 2.5.0" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , pythonOlder , setuptools-scm , pytestCheckHook , filelock , execnet , pytest , psutil , setproctitle }: buildPythonPackage rec { pname = "pytest-xdist"; version = "3.1.0"; disabled = pythonOlder "3.6"; format = "pyproject"; src = fetchPypi { inherit pname version; hash = "sha256-QP2481RJIcXfzUhqwIDOIocOcdgs7W0uePqXwq3dSAw="; }; nativeBuildInputs = [ setuptools-scm ]; buildInputs = [ pytest ]; propagatedBuildInputs = [ execnet ]; checkInputs = [ filelock pytestCheckHook ]; passthru.optional-dependencies = { psutil = [ psutil ]; setproctitle = [ setproctitle ]; }; pytestFlagsArray = [ # pytest can already use xdist at this point "--numprocesses=$NIX_BUILD_CORES" ]; # access file system disabledTests = [ "test_distribution_rsyncdirs_example" "test_rsync_popen_with_path" "test_popen_rsync_subdir" "test_rsync_report" "test_init_rsync_roots" "test_rsyncignore" # flakey "test_internal_errors_propagate_to_controller" ]; setupHook = ./setup-hook.sh; meta = with lib; { description = "Pytest xdist plugin for distributed testing and loop-on-failing modes"; homepage = "https://github.com/pytest-dev/pytest-xdist"; license = licenses.mit; maintainers = with maintainers; [ dotlambda ]; }; }