python310Packages.sh 0 -> 1 attrpath: python310Packages.sh 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/f3a3swk5c7mgwd2p3i8nvvd85wql0ba5-packages.json.drv building '/nix/store/f3a3swk5c7mgwd2p3i8nvvd85wql0ba5-packages.json.drv'... Going to be running update for following packages: - python3.10-sh-2.0.2 Press Enter key to continue... Running update for: - python3.10-sh-2.0.2: UPDATING ... - python3.10-sh-2.0.2: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/sh/default.nix b/pkgs/development/python-modules/sh/default.nix index 20e4d95928ea..359298bf2304 100644 --- a/pkgs/development/python-modules/sh/default.nix +++ b/pkgs/development/python-modules/sh/default.nix @@ -8,14 +8,14 @@ buildPythonPackage rec { pname = "sh"; - version = "2.0.2"; + version = "2.0.6"; format = "pyproject"; src = fetchFromGitHub { owner = "amoffat"; repo = "sh"; rev = "refs/tags/${version}"; - hash = "sha256-qMYaGNEvv2z47IHFGqb64TRpN3JHycpEmhYhDjrUi6s="; + hash = "sha256-c4Ms4ydcW7LgmAI1WuYD74nzILuY/Xg+JePJe0q5AQQ="; }; nativeBuildInputs = [ No auto update branch exists Old version 2.0.2" not present in staging derivation file with contents: { lib , stdenv , buildPythonPackage , fetchFromGitHub , poetry-core , pytestCheckHook }: buildPythonPackage rec { pname = "sh"; version = "2.0.6"; format = "pyproject"; src = fetchFromGitHub { owner = "amoffat"; repo = "sh"; rev = "refs/tags/${version}"; hash = "sha256-c4Ms4ydcW7LgmAI1WuYD74nzILuY/Xg+JePJe0q5AQQ="; }; nativeBuildInputs = [ poetry-core ]; nativeCheckInputs = [ pytestCheckHook ]; pytestFlagsArray = [ "tests" ]; # A test needs the HOME directory to be different from $TMPDIR. preCheck = '' export HOME=$(mktemp -d) ''; disabledTests = [ # Disable tests that fail on Hydra "test_no_fd_leak" "test_piped_exception1" "test_piped_exception2" "test_unicode_path" # fails to import itself after modifying the environment "test_environment" # timing sensitive through usage of sleep(1) and signal handling # https://github.com/amoffat/sh/issues/684 "test_general_signal" ] ++ lib.optionals stdenv.isDarwin [ # Disable tests that fail on Darwin sandbox "test_background_exception" "test_cwd" "test_ok_code" ]; meta = with lib; { description = "Python subprocess interface"; homepage = "https://pypi.python.org/pypi/sh/"; license = licenses.mit; maintainers = with maintainers; [ siriobalmelli ]; }; }