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/swxlyg9rycpj2kipmqzz87smv27pqagk-packages.json.drv building '/nix/store/swxlyg9rycpj2kipmqzz87smv27pqagk-packages.json.drv'... Going to be running update for following packages: - python3.10-shapely-2.0.0 Press Enter key to continue... Running update for: - python3.10-shapely-2.0.0: UPDATING ... - python3.10-shapely-2.0.0: 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 8225751f902..ec4f6bd6b37 100644 --- a/pkgs/development/python-modules/shapely/default.nix +++ b/pkgs/development/python-modules/shapely/default.nix @@ -12,14 +12,14 @@ buildPythonPackage rec { pname = "shapely"; - version = "2.0.0"; + version = "2.0.1"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-EfGxIxpsBCE/sSJsaWjRsbOzaexC0ellUGavh2MYYOo="; + hash = "sha256-Zqaxo+cuzpf8hVNqKBR2+bd5TeLmRsqKRRfi48FEaJM="; }; nativeBuildInputs = [ No auto update branch exists Old version 2.0.0" not present in staging derivation file with contents: { lib , stdenv , buildPythonPackage , pythonOlder , fetchPypi , cython , geos , setuptools , numpy , pytestCheckHook }: buildPythonPackage rec { pname = "shapely"; version = "2.0.1"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-Zqaxo+cuzpf8hVNqKBR2+bd5TeLmRsqKRRfi48FEaJM="; }; nativeBuildInputs = [ cython geos # for geos-config setuptools ]; buildInputs = [ geos ]; propagatedBuildInputs = [ numpy ]; nativeCheckInputs = [ 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 ]; }; }