python310Packages.execnet 0 -> 1 attrpath: python310Packages.execnet Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [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/v381wmnzdwabb9bg2iz9c6a5jmw3ws6p-packages.json.drv building '/nix/store/v381wmnzdwabb9bg2iz9c6a5jmw3ws6p-packages.json.drv'... Going to be running update for following packages: - python3.10-execnet-1.9.0 Press Enter key to continue... Running update for: - python3.10-execnet-1.9.0: UPDATING ... - python3.10-execnet-1.9.0: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/execnet/default.nix b/pkgs/development/python-modules/execnet/default.nix index 528e849290db..bf5cc4dc083c 100644 --- a/pkgs/development/python-modules/execnet/default.nix +++ b/pkgs/development/python-modules/execnet/default.nix @@ -11,12 +11,12 @@ buildPythonPackage rec { pname = "execnet"; - version = "1.9.0"; + version = "2.0.2"; format = "setuptools"; src = fetchPypi { inherit pname version; - sha256 = "8f694f3ba9cc92cab508b152dcfe322153975c29bda272e2fd7f3f00f36e47c5"; + sha256 = "sha256-zFm8RCN0L9ca0icSLrDdRNtR77PcQJW0WsmgjHcAlq8="; }; patches = [ No auto update branch exists Old version 1.9.0" not present in staging derivation file with contents: { lib , buildPythonPackage , isPyPy , fetchPypi , hatchling , hatch-vcs , gevent , pytestCheckHook }: buildPythonPackage rec { pname = "execnet"; version = "2.0.2"; format = "pyproject"; src = fetchPypi { inherit pname version; hash = "sha256-zFm8RCN0L9ca0icSLrDdRNtR77PcQJW0WsmgjHcAlq8="; }; postPatch = '' # remove vbox tests rm testing/test_termination.py rm testing/test_channel.py rm testing/test_xspec.py rm testing/test_gateway.py '' + lib.optionalString isPyPy '' rm testing/test_multi.py ''; nativeBuildInputs = [ hatchling hatch-vcs ]; # sometimes crashes with: OSError: [Errno 9] Bad file descriptor doCheck = !isPyPy; nativeCheckInputs = [ gevent pytestCheckHook ]; disabledTests = [ # gets stuck "test_popen_io" # OSError: [Errno 9] Bad file descriptor "test_stdouterrin_setnull" ]; pytestFlagsArray = [ "-vvv" ]; pythonImportsCheck = [ "execnet" ]; __darwinAllowLocalNetworking = true; meta = with lib; { changelog = "https://github.com/pytest-dev/execnet/blob/v${version}/CHANGELOG.rst"; description = "Distributed Python deployment and communication"; homepage = "https://execnet.readthedocs.io/"; license = licenses.mit; maintainers = with maintainers; [ ]; }; }