68 lines
1.1 KiB
Nix
68 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, fiona
|
|
, packaging
|
|
, pandas
|
|
, pyproj
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, rtree
|
|
, shapely
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "geopandas";
|
|
version = "0.13.2";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "geopandas";
|
|
repo = "geopandas";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-8H0IO+Oabl1ZOHHvMFHnPEyW0xH/G4wuUtkZrsP6K3k=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
fiona
|
|
packaging
|
|
pandas
|
|
pyproj
|
|
shapely
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
rtree
|
|
];
|
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d);
|
|
'';
|
|
|
|
disabledTests = [
|
|
# Requires network access
|
|
"test_read_file_url"
|
|
];
|
|
|
|
pytestFlagsArray = [
|
|
"geopandas"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"geopandas"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python geospatial data analysis framework";
|
|
homepage = "https://geopandas.org";
|
|
changelog = "https://github.com/geopandas/geopandas/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.bsd3;
|
|
maintainers = teams.geospatial.members;
|
|
};
|
|
}
|