pythonPackages.geopandas: Disable tests on darwin

This commit is contained in:
Sandro Jäckel 2021-01-10 08:06:26 +01:00
parent fd0ac74050
commit 32c1d619ec
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -29,10 +29,6 @@ buildPythonPackage rec {
})
];
checkInputs = [ pytestCheckHook Rtree ];
disabledTests = [ "web" ];
pytestFlagsArray = [ "geopandas" ];
propagatedBuildInputs = [
pandas
shapely
@ -41,6 +37,11 @@ buildPythonPackage rec {
pyproj
];
doCheck = !stdenv.isDarwin;
checkInputs = [ pytestCheckHook Rtree ];
disabledTests = [ "web" ];
pytestFlagsArray = [ "geopandas" ];
meta = with lib; {
description = "Python geospatial data analysis framework";
homepage = "https://geopandas.org";