python310Packages.timezonefinder 0 -> 1 attrpath: python310Packages.timezonefinder 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/ingphhyqpwzvikb0irf9rw9qp4hc04ap-packages.json.drv building '/nix/store/ingphhyqpwzvikb0irf9rw9qp4hc04ap-packages.json.drv'... Going to be running update for following packages: - python3.10-timezonefinder-6.0.2 Press Enter key to continue... Running update for: - python3.10-timezonefinder-6.0.2: UPDATING ... - python3.10-timezonefinder-6.0.2: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/timezonefinder/default.nix b/pkgs/development/python-modules/timezonefinder/default.nix index f5dc5f7c346..c747cac05c0 100644 --- a/pkgs/development/python-modules/timezonefinder/default.nix +++ b/pkgs/development/python-modules/timezonefinder/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "timezonefinder"; - version = "6.0.2"; + version = "6.1.9"; format = "pyproject"; disabled = pythonOlder "3.8"; @@ -19,8 +19,8 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "jannikmi"; repo = pname; - rev = version; - hash = "sha256-jquaA/+alSRUaa2wXQ6YoDR4EY9OlZCAdcxS5TR0CAU="; + rev = "refs/tags/${version}"; + hash = "sha256-A5s1npvgJGp6SvIqoXGRmFN3iE0pqMUl1ZTi07ix5b0="; }; nativeBuildInputs = [ No auto update branch exists Old version 6.0.2" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , h3 , numba , numpy , poetry-core , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "timezonefinder"; version = "6.1.9"; format = "pyproject"; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "jannikmi"; repo = pname; rev = "refs/tags/${version}"; hash = "sha256-A5s1npvgJGp6SvIqoXGRmFN3iE0pqMUl1ZTi07ix5b0="; }; nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = [ h3 numpy ]; checkInputs = [ numba pytestCheckHook ]; postPatch = '' substituteInPlace pyproject.toml \ --replace 'numpy = "^1.22"' 'numpy = "*"' ''; pythonImportsCheck = [ "timezonefinder" ]; preCheck = '' # Some tests need the CLI on the PATH export PATH=$out/bin:$PATH ''; meta = with lib; { description = "Module for finding the timezone of any point on earth (coordinates) offline"; homepage = "https://github.com/MrMinimal64/timezonefinder"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; }