python310Packages.pyp 0 -> 1 attrpath: python310Packages.pyp 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/04c48ij4vgq9665ccah23skixvx5ljaz-packages.json.drv building '/nix/store/04c48ij4vgq9665ccah23skixvx5ljaz-packages.json.drv'... Going to be running update for following packages: - python3.10-pyp-1.0.0 Press Enter key to continue... Running update for: - python3.10-pyp-1.0.0: UPDATING ... - python3.10-pyp-1.0.0: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/pyp/default.nix b/pkgs/development/python-modules/pyp/default.nix index fa7fcc6902e..0b82cb1e3d5 100644 --- a/pkgs/development/python-modules/pyp/default.nix +++ b/pkgs/development/python-modules/pyp/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "pyp"; - version = "1.0.0"; + version = "1.1.0"; format = "setuptools"; disabled = pythonOlder "3.6"; @@ -19,8 +19,8 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "hauntsaninja"; repo = pname; - rev = "v${version}"; - sha256 = "09k7y77h7g4dg0x6lg9pn2ga9z7xiy4vlj15fj0991ffsi4ydqgm"; + rev = "refs/tags/v${version}"; + sha256 = "sha256-A1Ip41kxH17BakHEWEuymfa24eBEl5FIHAWL+iZFM4I="; }; propagatedBuildInputs = lib.optionals (pythonOlder "3.9") [ No auto update branch exists Old version 1.0.0" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , pytestCheckHook , coreutils , pythonOlder , astunparse , jq , bc }: buildPythonPackage rec { pname = "pyp"; version = "1.1.0"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchFromGitHub { owner = "hauntsaninja"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-A1Ip41kxH17BakHEWEuymfa24eBEl5FIHAWL+iZFM4I="; }; propagatedBuildInputs = lib.optionals (pythonOlder "3.9") [ astunparse ]; preCheck = '' export PATH=$out/bin:$PATH ''; nativeCheckInputs = [ pytestCheckHook coreutils jq bc ]; pythonImportsCheck = [ "pyp" ]; meta = with lib; { description = "Easily run Python at the shell! Magical, but never mysterious"; homepage = "https://github.com/hauntsaninja/pyp"; license = licenses.mit; maintainers = with maintainers; [ rmcgibbo ]; }; }