python310Packages.polyline 0 -> 1 attrpath: python310Packages.polyline 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/ngn4cy8nzkk76cmgg9rgjgkb865a6mdq-packages.json.drv building '/nix/store/ngn4cy8nzkk76cmgg9rgjgkb865a6mdq-packages.json.drv'... Going to be running update for following packages: - python3.10-polyline-1.4.0 Press Enter key to continue... Running update for: - python3.10-polyline-1.4.0: UPDATING ... - python3.10-polyline-1.4.0: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/polyline/default.nix b/pkgs/development/python-modules/polyline/default.nix index 249512cedb2..5e3f3e17035 100644 --- a/pkgs/development/python-modules/polyline/default.nix +++ b/pkgs/development/python-modules/polyline/default.nix @@ -8,11 +8,11 @@ buildPythonPackage rec { pname = "polyline"; - version = "1.4.0"; + version = "2.0.0"; src = fetchPypi { inherit pname version; - sha256 = "0x60lm3ccq9zrcqlzyk041xgr1mi0k9lzyyv3cbbdiq9kb88jzvw"; + sha256 = "sha256-FJK4/K3CFD+K7cZz08bZXfRRMfHGLrjVHIGDsk53FIY="; }; propagatedBuildInputs = [ six ]; No auto update branch exists Old version 1.4.0" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , six , flake8 , nose }: buildPythonPackage rec { pname = "polyline"; version = "2.0.0"; src = fetchPypi { inherit pname version; hash = "sha256-FJK4/K3CFD+K7cZz08bZXfRRMfHGLrjVHIGDsk53FIY="; }; propagatedBuildInputs = [ six ]; nativeCheckInputs = [ flake8 nose ]; checkPhase = '' nosetests ''; meta = with lib; { homepage = "https://github.com/hicsail/polyline"; license = licenses.mit; description = "Python implementation of Google's Encoded Polyline Algorithm Format."; longDescription = "polyline is a Python implementation of Google's Encoded Polyline Algorithm Format (http://goo.gl/PvXf8Y). It is essentially a port of https://github.com/mapbox/polyline built with Python 2 and 3 support in mind."; maintainers = with maintainers; [ ersin ]; }; }