2019-10-08 03:29:53 +02:00
|
|
|
{ stdenv, lib, buildPythonPackage, fetchPypi, isPy3k, pythonOlder
|
2019-02-25 10:51:42 +01:00
|
|
|
, attrs, click, cligj, click-plugins, six, munch, enum34
|
2019-10-08 03:29:53 +02:00
|
|
|
, pytest, boto3, mock, giflib
|
2019-07-14 06:00:48 +02:00
|
|
|
, 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";
|
2020-03-23 10:16:14 +01:00
|
|
|
version = "1.8.13.post1";
|
2017-09-03 11:05:57 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-03-23 10:16:14 +01:00
|
|
|
sha256 = "00366f2j21b5r4r8310sadf7jjhdr44s0381dhjqkw2nzpwjnhqs";
|
2017-09-03 11:05:57 +02:00
|
|
|
};
|
|
|
|
|
2019-10-08 03:29:53 +02:00
|
|
|
CXXFLAGS = lib.optionalString stdenv.cc.isClang "-std=c++11";
|
2018-09-09 22:40:49 +02:00
|
|
|
|
2019-02-25 10:51:42 +01:00
|
|
|
nativeBuildInputs = [
|
2019-07-14 06:00:48 +02:00
|
|
|
gdal_2 # for gdal-config
|
2019-02-25 10:51:42 +01:00
|
|
|
];
|
|
|
|
|
2017-09-03 11:05:57 +02:00
|
|
|
buildInputs = [
|
2019-07-14 06:00:48 +02:00
|
|
|
gdal_2
|
2019-10-08 03:29:53 +02:00
|
|
|
] ++ 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
|
2019-10-08 03:29:53 +02:00
|
|
|
] ++ lib.optional (!isPy3k) enum34;
|
2017-09-03 11:05:57 +02:00
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
pytest
|
2019-02-25 10:51:42 +01:00
|
|
|
boto3
|
2019-10-08 03:29:53 +02:00
|
|
|
] ++ 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
|
|
|
|
pytest -k "not test_*_http \
|
|
|
|
and not test_*_https \
|
|
|
|
and not test_*_wheel"
|
|
|
|
'';
|
2017-09-03 11:05:57 +02:00
|
|
|
|
2019-10-08 03:29:53 +02:00
|
|
|
meta = with lib; {
|
2017-09-03 11:05:57 +02:00
|
|
|
description = "OGR's neat, nimble, no-nonsense API for Python";
|
2019-12-08 17:50:31 +01:00
|
|
|
homepage = "https://fiona.readthedocs.io/";
|
2017-09-03 11:05:57 +02:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ knedlsepp ];
|
|
|
|
};
|
|
|
|
}
|