Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;
};
}
4 changes: 4 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7544,6 +7544,10 @@ self: super: with self; {

litemapy = callPackage ../development/python-modules/litemapy { };

litestar = toPythonModule (pkgs.litestar.override {
python3Packages = pythonPackages;
});

litestar-htmx = callPackage ../development/python-modules/litestar-htmx { };

littleutils = callPackage ../development/python-modules/littleutils { };
Expand Down