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