python310Packages.pygdbmi 0 -> 1 attrpath: python310Packages.pygdbmi 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/rchj3652cky506c1w1x6vfparykrybrm-packages.json.drv building '/nix/store/rchj3652cky506c1w1x6vfparykrybrm-packages.json.drv'... Going to be running update for following packages: - python3.10-pygdbmi-0.10.0.0 Press Enter key to continue... Running update for: - python3.10-pygdbmi-0.10.0.0: UPDATING ... - python3.10-pygdbmi-0.10.0.0: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/pygdbmi/default.nix b/pkgs/development/python-modules/pygdbmi/default.nix index af328835752..7d493a36fc7 100644 --- a/pkgs/development/python-modules/pygdbmi/default.nix +++ b/pkgs/development/python-modules/pygdbmi/default.nix @@ -7,13 +7,13 @@ buildPythonPackage rec { pname = "pygdbmi"; - version = "0.10.0.0"; + version = "0.11.0.0"; src = fetchFromGitHub { owner = "cs01"; repo = "pygdbmi"; - rev = version; - sha256 = "0a6b3zyxwdcb671c6lrwxm8fhvsbjh0m8hf1r18m9dha86laimjr"; + rev = "refs/tags/v${version}"; + sha256 = "sha256-JqEDN8Pg/JttyYQbwkxKkLYuxVnvV45VlClD23eaYyc="; }; nativeCheckInputs = [ gdb ]; No auto update branch exists Old version 0.10.0.0" not present in staging derivation file with contents: { stdenv , lib , buildPythonPackage , fetchFromGitHub , gdb , pytest }: buildPythonPackage rec { pname = "pygdbmi"; version = "0.11.0.0"; src = fetchFromGitHub { owner = "cs01"; repo = "pygdbmi"; rev = "refs/tags/v${version}"; hash = "sha256-JqEDN8Pg/JttyYQbwkxKkLYuxVnvV45VlClD23eaYyc="; }; nativeCheckInputs = [ gdb pytest ]; # tests require gcc for some reason doCheck = !stdenv.hostPlatform.isDarwin; postPatch = '' # tries to execute flake8, # which is likely to break on flake8 updates echo "def main(): return 0" > tests/static_tests.py ''; meta = with lib; { description = "Parse gdb machine interface output with Python"; homepage = "https://github.com/cs01/pygdbmi"; license = licenses.mit; maintainers = [ maintainers.mic92 ]; }; }