diff --git a/pkgs/development/python-modules/shapely/default.nix b/pkgs/development/python-modules/shapely/default.nix index 914b6deccb6ca..9e078d92610c4 100644 --- a/pkgs/development/python-modules/shapely/default.nix +++ b/pkgs/development/python-modules/shapely/default.nix @@ -7,7 +7,7 @@ pytestCheckHook, pythonOlder, - cython_0, + cython, geos, numpy, oldest-supported-numpy, @@ -36,7 +36,7 @@ buildPythonPackage rec { ]; nativeBuildInputs = [ - cython_0 + cython geos # for geos-config oldest-supported-numpy setuptools @@ -45,7 +45,7 @@ buildPythonPackage rec { buildInputs = [ geos ]; - propagatedBuildInputs = [ numpy ]; + dependencies = [ numpy ]; nativeCheckInputs = [ pytestCheckHook ]; @@ -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; }; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5a8874b6eeb7a..6969c03ce6737 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -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 { };