python3Packages.geopandas: modernize python packaging

This commit is contained in:
Ivan Mincik
2024-05-01 11:02:00 +02:00
parent 6e3740b6dd
commit dd03cbc938
@@ -2,12 +2,14 @@
, stdenv
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, setuptools
, fiona
, packaging
, pandas
, pyproj
, pytestCheckHook
, pythonOlder
, rtree
, shapely
}:
@@ -15,7 +17,7 @@
buildPythonPackage rec {
pname = "geopandas";
version = "0.14.4";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.9";
@@ -26,6 +28,10 @@ buildPythonPackage rec {
hash = "sha256-FBhPcae8bnNnsfr14I1p22VhoOf9USF9DAcrAqx+zso=";
};
build-system = [
setuptools
];
propagatedBuildInputs = [
fiona
packaging