python310Packages.shapely 0 -> 1 attrpath: python310Packages.shapely 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/hisdqnrxn4sfd3dp7pzx53xflllkq9gk-packages.json.drv building '/nix/store/hisdqnrxn4sfd3dp7pzx53xflllkq9gk-packages.json.drv'... Going to be running update for following packages: - python3.10-Shapely-1.8.4 Press Enter key to continue... Running update for: - python3.10-Shapely-1.8.4: UPDATING ... - python3.10-Shapely-1.8.4: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/shapely/default.nix b/pkgs/development/python-modules/shapely/default.nix index fda2645105f..28ca750f652 100644 --- a/pkgs/development/python-modules/shapely/default.nix +++ b/pkgs/development/python-modules/shapely/default.nix @@ -12,12 +12,12 @@ buildPythonPackage rec { pname = "Shapely"; - version = "1.8.4"; + version = "2.0.0"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - sha256 = "sha256-oZXlHKr6IYKR8suqP+9p/TNTyT7EtlsqRyLEz0DDGYw="; + sha256 = "sha256-EfGxIxpsBCE/sSJsaWjRsbOzaexC0ellUGavh2MYYOo="; }; nativeBuildInputs = [ No auto update branch exists Old version 1.8.4" not present in master derivation file with contents: { lib , stdenv , buildPythonPackage , pythonOlder , fetchPypi , cython , geos , setuptools , numpy , pytestCheckHook }: buildPythonPackage rec { pname = "shapely"; version = "2.0.0"; disabled = pythonOlder "3.7"; format = "pyproject"; src = fetchPypi { inherit pname version; sha256 = "sha256-EfGxIxpsBCE/sSJsaWjRsbOzaexC0ellUGavh2MYYOo="; }; nativeBuildInputs = [ cython geos # for geos-config setuptools ]; buildInputs = [ geos ]; propagatedBuildInputs = [ numpy ]; checkInputs = [ pytestCheckHook ]; preCheck = '' rm -r shapely # prevent import of local shapely ''; disabledTests = lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [ # FIXME(lf-): these logging tests are broken, which is definitely our # fault. I've tried figuring out the cause and failed. # # It is apparently some sandbox or no-sandbox related thing on macOS only # though. "test_error_handler_exception" "test_error_handler" "test_info_handler" ]; pythonImportsCheck = [ "shapely" ]; meta = with lib; { changelog = "https://github.com/shapely/shapely/blob/${version}/CHANGES.txt"; description = "Manipulation and analysis of geometric objects"; homepage = "https://github.com/shapely/shapely"; license = licenses.bsd3; maintainers = with maintainers; [ knedlsepp ]; }; }