python310Packages.single-version 0 -> 1 attrpath: python310Packages.single-version 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/x2xzwg371b8c82ip9p1iwyd8gyqvjj3d-packages.json.drv building '/nix/store/x2xzwg371b8c82ip9p1iwyd8gyqvjj3d-packages.json.drv'... Going to be running update for following packages: - python3.10-single-version-1.5.1 Press Enter key to continue... Running update for: - python3.10-single-version-1.5.1: UPDATING ... - python3.10-single-version-1.5.1: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/single-version/default.nix b/pkgs/development/python-modules/single-version/default.nix index 53989afe94f8..ad207bb19c9f 100644 --- a/pkgs/development/python-modules/single-version/default.nix +++ b/pkgs/development/python-modules/single-version/default.nix @@ -8,14 +8,14 @@ buildPythonPackage rec { pname = "single-version"; - version = "1.5.1"; + version = "1.6.0"; format = "pyproject"; src = fetchFromGitHub { owner = "hongquan"; repo = pname; - rev = "v${version}"; - hash = "sha256-I8ATQzPRH9FVjqPoqrNjYMBU5azpmkLjRmHcz943C10="; + rev = "refs/tags/v${version}"; + hash = "sha256-dUmJhNCPuq/7WGzFQXLjb8JrQgQn7qyBqzPWaKzD9hc="; }; patches = [ No auto update branch exists Old version 1.5.1" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , fetchpatch , poetry-core , pytestCheckHook }: buildPythonPackage rec { pname = "single-version"; version = "1.6.0"; format = "pyproject"; src = fetchFromGitHub { owner = "hongquan"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-dUmJhNCPuq/7WGzFQXLjb8JrQgQn7qyBqzPWaKzD9hc="; }; nativeBuildInputs = [ poetry-core ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "single_version" ]; meta = with lib; { description = "Utility to let you have a single source of version in your code base"; homepage = "https://github.com/hongquan/single-version"; license = licenses.mit; maintainers = with maintainers; [ wolfangaukang ]; }; }