2019-10-08 01:29:53 +00:00
|
|
|
{ stdenv, lib, buildPythonPackage, fetchPypi, isPy3k, pythonOlder
|
2019-02-25 09:51:42 +00:00
|
|
|
, attrs, click, cligj, click-plugins, six, munch, enum34
|
2019-10-08 01:29:53 +00:00
|
|
|
, pytest, boto3, mock, giflib
|
2019-07-14 04:00:48 +00:00
|
|
|
, gdal_2 # can't bump to 3 yet, https://github.com/Toblerity/Fiona/issues/745
|
2017-09-03 09:05:57 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "Fiona";
|
2019-10-24 06:47:30 +00:00
|
|
|
version = "1.8.9.post2";
|
2017-09-03 09:05:57 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-24 06:47:30 +00:00
|
|
|
sha256 = "210fb038b579fab38f35ddbdd31b9725f4d5099b3edfd4b87c983e5d47b79983";
|
2017-09-03 09:05:57 +00:00
|
|
|
};
|
|
|
|
|
2019-10-08 01:29:53 +00:00
|
|
|
CXXFLAGS = lib.optionalString stdenv.cc.isClang "-std=c++11";
|
2018-09-09 20:40:49 +00:00
|
|
|
|
2019-02-25 09:51:42 +00:00
|
|
|
nativeBuildInputs = [
|
2019-07-14 04:00:48 +00:00
|
|
|
gdal_2 # for gdal-config
|
2019-02-25 09:51:42 +00:00
|
|
|
];
|
|
|
|
|
2017-09-03 09:05:57 +00:00
|
|
|
buildInputs = [
|
2019-07-14 04:00:48 +00:00
|
|
|
gdal_2
|
2019-10-08 01:29:53 +00:00
|
|
|
] ++ lib.optionals stdenv.cc.isClang [ giflib ];
|
2017-09-03 09:05:57 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
2019-02-25 09:51:42 +00:00
|
|
|
attrs
|
|
|
|
click
|
2017-09-03 09:05:57 +00:00
|
|
|
cligj
|
|
|
|
click-plugins
|
2019-02-25 09:51:42 +00:00
|
|
|
six
|
|
|
|
munch
|
2019-10-08 01:29:53 +00:00
|
|
|
] ++ lib.optional (!isPy3k) enum34;
|
2017-09-03 09:05:57 +00:00
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
pytest
|
2019-02-25 09:51:42 +00:00
|
|
|
boto3
|
2019-10-08 01:29:53 +00:00
|
|
|
] ++ lib.optional (pythonOlder "3.4") mock;
|
2017-09-03 09:05:57 +00: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 09:05:57 +00:00
|
|
|
|
2019-10-08 01:29:53 +00:00
|
|
|
meta = with lib; {
|
2017-09-03 09:05:57 +00:00
|
|
|
description = "OGR's neat, nimble, no-nonsense API for Python";
|
|
|
|
homepage = http://toblerity.org/fiona/;
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ knedlsepp ];
|
|
|
|
};
|
|
|
|
}
|