diff options
Diffstat (limited to 'pkgs/development/python-modules/geopandas/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/geopandas/default.nix | 39 |
1 files changed, 17 insertions, 22 deletions
diff --git a/pkgs/development/python-modules/geopandas/default.nix b/pkgs/development/python-modules/geopandas/default.nix index f786d3b25293..021292f8c4ac 100644 --- a/pkgs/development/python-modules/geopandas/default.nix +++ b/pkgs/development/python-modules/geopandas/default.nix @@ -1,17 +1,18 @@ -{ lib -, stdenv -, buildPythonPackage -, fetchFromGitHub -, pytestCheckHook -, pythonOlder -, setuptools +{ + lib, + stdenv, + buildPythonPackage, + fetchFromGitHub, + pytestCheckHook, + pythonOlder, + setuptools, -, fiona -, packaging -, pandas -, pyproj -, rtree -, shapely + fiona, + packaging, + pandas, + pyproj, + rtree, + shapely, }: buildPythonPackage rec { @@ -28,9 +29,7 @@ buildPythonPackage rec { hash = "sha256-FBhPcae8bnNnsfr14I1p22VhoOf9USF9DAcrAqx+zso="; }; - build-system = [ - setuptools - ]; + build-system = [ setuptools ]; propagatedBuildInputs = [ fiona @@ -56,13 +55,9 @@ buildPythonPackage rec { "test_read_file_url" ]; - pytestFlagsArray = [ - "geopandas" - ]; + pytestFlagsArray = [ "geopandas" ]; - pythonImportsCheck = [ - "geopandas" - ]; + pythonImportsCheck = [ "geopandas" ]; meta = with lib; { description = "Python geospatial data analysis framework"; |
