nixpkgs/pkgs/development/python-modules/fiona/default.nix

54 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, lib, buildPythonPackage, fetchPypi, isPy3k, pythonOlder
2019-02-25 10:51:42 +01:00
, attrs, click, cligj, click-plugins, six, munch, enum34
2020-11-06 00:46:50 +01:00
, pytest, boto3, mock, giflib, pytz
, gdal_2 # can't bump to 3 yet, https://github.com/Toblerity/Fiona/issues/745
2017-09-03 11:05:57 +02:00
}:
buildPythonPackage rec {
pname = "Fiona";
version = "1.8.18";
2017-09-03 11:05:57 +02:00
src = fetchPypi {
inherit pname version;
sha256 = "b732ece0ff8886a29c439723a3e1fc382718804bb057519d537a81308854967a";
2017-09-03 11:05:57 +02:00
};
CXXFLAGS = lib.optionalString stdenv.cc.isClang "-std=c++11";
2019-02-25 10:51:42 +01:00
nativeBuildInputs = [
gdal_2 # for gdal-config
2019-02-25 10:51:42 +01:00
];
2017-09-03 11:05:57 +02:00
buildInputs = [
gdal_2
] ++ lib.optionals stdenv.cc.isClang [ giflib ];
2017-09-03 11:05:57 +02:00
propagatedBuildInputs = [
2019-02-25 10:51:42 +01:00
attrs
click
2017-09-03 11:05:57 +02:00
cligj
click-plugins
2019-02-25 10:51:42 +01:00
six
munch
2020-11-06 00:46:50 +01:00
pytz
] ++ lib.optional (!isPy3k) enum34;
2017-09-03 11:05:57 +02:00
checkInputs = [
pytest
2019-02-25 10:51:42 +01:00
boto3
] ++ lib.optional (pythonOlder "3.4") mock;
2017-09-03 11:05:57 +02:00
2019-02-25 10:51:42 +01:00
checkPhase = ''
rm -r fiona # prevent importing local fiona
# Some tests access network, others test packaging
2020-12-29 21:48:29 +01:00
pytest -k "not (http or https or wheel)"
2019-02-25 10:51:42 +01:00
'';
2017-09-03 11:05:57 +02:00
meta = with lib; {
2017-09-03 11:05:57 +02:00
description = "OGR's neat, nimble, no-nonsense API for Python";
homepage = "https://fiona.readthedocs.io/";
2017-09-03 11:05:57 +02:00
license = licenses.bsd3;
maintainers = with maintainers; [ knedlsepp ];
};
}