python310Packages.voluptuous 0 -> 1 attrpath: python310Packages.voluptuous 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/a3n0s957q576h38mlv4py620j4fhqlwy-packages.json.drv building '/nix/store/a3n0s957q576h38mlv4py620j4fhqlwy-packages.json.drv'... Going to be running update for following packages: - python3.10-voluptuous-0.13.1 Press Enter key to continue... Running update for: - python3.10-voluptuous-0.13.1: UPDATING ... - python3.10-voluptuous-0.13.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/voluptuous/default.nix b/pkgs/development/python-modules/voluptuous/default.nix index 452d95eede33..14f743c0ecba 100644 --- a/pkgs/development/python-modules/voluptuous/default.nix +++ b/pkgs/development/python-modules/voluptuous/default.nix @@ -6,14 +6,14 @@ buildPythonPackage rec { pname = "voluptuous"; - version = "0.13.1"; + version = "0.14.1"; format = "setuptools"; src = fetchFromGitHub { owner = "alecthomas"; repo = pname; - rev = version; - hash = "sha256-cz3Bd+/yPh+VOHxzi/W+gbDh/H5Nl/n4jvxDOirmAVk="; + rev = "refs/tags/${version}"; + hash = "sha256-7KXuypcKoqZboHTzoNKK5sYUR57wWGJu6y9zkLecep0="; }; nativeCheckInputs = [ No auto update branch exists Old version 0.13.1" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , setuptools , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "voluptuous"; version = "0.14.1"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "alecthomas"; repo = "voluptuous"; rev = "refs/tags/${version}"; hash = "sha256-7KXuypcKoqZboHTzoNKK5sYUR57wWGJu6y9zkLecep0="; }; nativeBuildInputs = [ setuptools ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "voluptuous" ]; pytestFlagsArray = [ "voluptuous/tests/" ]; meta = with lib; { description = "Python data validation library"; downloadPage = "https://github.com/alecthomas/voluptuous"; homepage = "http://alecthomas.github.io/voluptuous/"; changelog = "https://github.com/alecthomas/voluptuous/blob/${version}/CHANGELOG.md"; license = licenses.bsd3; maintainers = with maintainers; [ fab ]; }; }