Skip to content

Commit

Permalink
python313Packages.shapely: build with cython3
Browse files Browse the repository at this point in the history
  • Loading branch information
Bot-wxt1221 committed Jan 20, 2025
1 parent 437afab commit 31d0ba3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pkgs/development/python-modules/shapely/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
pytestCheckHook,
pythonOlder,

cython_0,
cython,
geos,
numpy,
oldest-supported-numpy,
Expand Down Expand Up @@ -36,7 +36,7 @@ buildPythonPackage rec {
];

nativeBuildInputs = [
cython_0
cython
geos # for geos-config
oldest-supported-numpy
setuptools
Expand All @@ -45,7 +45,7 @@ buildPythonPackage rec {

buildInputs = [ geos ];

propagatedBuildInputs = [ numpy ];
dependencies = [ numpy ];

nativeCheckInputs = [ pytestCheckHook ];

Expand All @@ -68,11 +68,11 @@ buildPythonPackage rec {

pythonImportsCheck = [ "shapely" ];

meta = with lib; {
meta = {
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 = teams.geospatial.members;
license = lib.licenses.bsd3;
maintainers = lib.teams.geospatial.members;
};
}

0 comments on commit 31d0ba3

Please sign in to comment.