41 lines
726 B
Nix
41 lines
726 B
Nix
{ stdenv, buildPythonPackage, fetchPypi,
|
|
six, cligj, munch, click-plugins, enum34, pytest, nose,
|
|
gdal
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "Fiona";
|
|
version = "1.7.13";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "a156129f0904cb7eb24aa0745b6075da54f2c31db168ed3bcac8a4bd716d77b2";
|
|
};
|
|
|
|
buildInputs = [
|
|
gdal
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
six
|
|
cligj
|
|
munch
|
|
click-plugins
|
|
enum34
|
|
];
|
|
|
|
checkInputs = [
|
|
pytest
|
|
nose
|
|
];
|
|
|
|
doCheck = false;
|
|
|
|
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 ];
|
|
};
|
|
}
|