python310Packages.astral 0 -> 1 attrpath: python310Packages.astral 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/m3vlf9x9bfwkr2vr90mzgljy77wgydcg-packages.json.drv building '/nix/store/m3vlf9x9bfwkr2vr90mzgljy77wgydcg-packages.json.drv'... Going to be running update for following packages: - python3.10-astral-2.2 Press Enter key to continue... Running update for: - python3.10-astral-2.2: UPDATING ... - python3.10-astral-2.2: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/astral/default.nix b/pkgs/development/python-modules/astral/default.nix index 8c97ef6750f..547b9677115 100644 --- a/pkgs/development/python-modules/astral/default.nix +++ b/pkgs/development/python-modules/astral/default.nix @@ -2,12 +2,12 @@ buildPythonPackage rec { pname = "astral"; - version = "2.2"; + version = "3.2"; disabled = isPy27; src = fetchPypi { inherit pname version; - sha256 = "e41d9967d5c48be421346552f0f4dedad43ff39a83574f5ff2ad32b6627b6fbe"; + sha256 = "sha256-m3w7QS6eadFyz7JL4Oat3MnxvQGijbi+vmbXXMxTPYg="; }; propagatedBuildInputs = [ pytz requests freezegun ]; No auto update branch exists Old version 2.2" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , pythonOlder # build , poetry-core # runtime , backports-zoneinfo # tests , pytestCheckHook , freezegun }: buildPythonPackage rec { pname = "astral"; version = "3.2"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-m3w7QS6eadFyz7JL4Oat3MnxvQGijbi+vmbXXMxTPYg="; }; nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = lib.optionals (pythonOlder "3.9") [ backports-zoneinfo ]; checkInputs = [ freezegun pytestCheckHook ]; meta = with lib; { changelog = "https://github.com/sffjunkie/astral/releases/tag/${version}"; description = "Calculations for the position of the sun and the moon"; homepage = "https://github.com/sffjunkie/astral/"; license = licenses.asl20; maintainers = with maintainers; [ flokli ]; }; }