mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-25 10:36:36 +03:00
pythonPackages.geopandas: Disable tests on darwin
This commit is contained in:
parent
fd0ac74050
commit
32c1d619ec
1 changed files with 5 additions and 4 deletions
|
@ -29,10 +29,6 @@ buildPythonPackage rec {
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
checkInputs = [ pytestCheckHook Rtree ];
|
|
||||||
disabledTests = [ "web" ];
|
|
||||||
pytestFlagsArray = [ "geopandas" ];
|
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
pandas
|
pandas
|
||||||
shapely
|
shapely
|
||||||
|
@ -41,6 +37,11 @@ buildPythonPackage rec {
|
||||||
pyproj
|
pyproj
|
||||||
];
|
];
|
||||||
|
|
||||||
|
doCheck = !stdenv.isDarwin;
|
||||||
|
checkInputs = [ pytestCheckHook Rtree ];
|
||||||
|
disabledTests = [ "web" ];
|
||||||
|
pytestFlagsArray = [ "geopandas" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Python geospatial data analysis framework";
|
description = "Python geospatial data analysis framework";
|
||||||
homepage = "https://geopandas.org";
|
homepage = "https://geopandas.org";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue