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

55 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, isPy3k, pythonOlder
2019-02-25 09:51:42 +00:00
, attrs, click, cligj, click-plugins, six, munch, enum34
, pytest, boto3, mock
, 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";
version = "1.8.8";
2017-09-03 09:05:57 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "10qym4anwh0mgfgkhrz6cimkv7af3rd49290k497icq36bkkn73i";
2017-09-03 09:05:57 +00:00
};
CXXFLAGS = stdenv.lib.optionalString stdenv.cc.isClang "-std=c++11";
2019-02-25 09:51:42 +00:00
nativeBuildInputs = [
gdal_2 # for gdal-config
2019-02-25 09:51:42 +00:00
];
2017-09-03 09:05:57 +00:00
buildInputs = [
gdal_2
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
] ++ stdenv.lib.optional (!isPy3k) enum34;
2017-09-03 09:05:57 +00:00
checkInputs = [
pytest
2019-02-25 09:51:42 +00:00
boto3
] ++ stdenv.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
meta = with stdenv.lib; {
description = "OGR's neat, nimble, no-nonsense API for Python";
homepage = http://toblerity.org/fiona/;
license = licenses.bsd3;
maintainers = with maintainers; [ knedlsepp ];
};
}