1{ stdenv, buildPythonPackage, fetchPypi,
2 six, cligj, munch, click-plugins, enum34, pytest, nose,
3 gdal
4}:
5
6buildPythonPackage rec {
7 pname = "Fiona";
8 version = "1.7.11.post1";
9 name = "${pname}-${version}";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "35df044fa805e6b420450f5d4281fc0edf96e1da0545c31032045cd3cfad3abf";
14 };
15
16 buildInputs = [
17 gdal
18 ];
19
20 propagatedBuildInputs = [
21 six
22 cligj
23 munch
24 click-plugins
25 enum34
26 ];
27
28 checkInputs = [
29 pytest
30 nose
31 ];
32
33 doCheck = false;
34
35 meta = with stdenv.lib; {
36 description = "OGR's neat, nimble, no-nonsense API for Python";
37 homepage = http://toblerity.org/fiona/;
38 license = licenses.bsd3;
39 maintainers = with maintainers; [ knedlsepp ];
40 };
41}