Merge pull request #174026 from sikmir/rasterio

python3Packages.rasterio: fix on darwin
This commit is contained in:
Robert Scott
2022-05-22 20:56:51 +01:00
committed by GitHub
@@ -1,4 +1,5 @@
{ lib
, stdenv
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
@@ -17,6 +18,7 @@
, matplotlib
, numpy
, snuggs
, setuptools
# tests
, hypothesis
@@ -55,6 +57,7 @@ buildPythonPackage rec {
matplotlib
numpy
snuggs
setuptools # needs pkg_resources at runtime
];
preCheck = ''
@@ -73,10 +76,19 @@ buildPythonPackage rec {
"-m 'not network'"
];
disabledTests = lib.optionals stdenv.isDarwin [
"test_reproject_error_propagation"
];
pythonImportsCheck = [
"rasterio"
];
doInstallCheck = true;
installCheckPhase = ''
$out/bin/rio --version | grep ${version} > /dev/null
'';
meta = with lib; {
description = "Python package to read and write geospatial raster data";
homepage = "https://rasterio.readthedocs.io/en/latest/";