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.13";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "a156129f0904cb7eb24aa0745b6075da54f2c31db168ed3bcac8a4bd716d77b2";
13 };
14
15 buildInputs = [
16 gdal
17 ];
18
19 propagatedBuildInputs = [
20 six
21 cligj
22 munch
23 click-plugins
24 enum34
25 ];
26
27 checkInputs = [
28 pytest
29 nose
30 ];
31
32 doCheck = false;
33
34 meta = with stdenv.lib; {
35 description = "OGR's neat, nimble, no-nonsense API for Python";
36 homepage = http://toblerity.org/fiona/;
37 license = licenses.bsd3;
38 maintainers = with maintainers; [ knedlsepp ];
39 };
40}