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

43 lines
797 B
Nix
Raw Normal View History

2017-09-03 09:05:57 +00:00
{ stdenv, buildPythonPackage, fetchPypi,
six, cligj, munch, click-plugins, enum34, pytest, nose,
gdal
}:
buildPythonPackage rec {
pname = "Fiona";
2019-01-17 15:12:55 +00:00
version = "1.8.4";
2017-09-03 09:05:57 +00:00
src = fetchPypi {
inherit pname version;
2019-01-17 15:12:55 +00:00
sha256 = "aec9ab2e3513c9503ec123b1a8573bee55fc6a66e2ac07088c3376bf6738a424";
2017-09-03 09:05:57 +00:00
};
CXXFLAGS = stdenv.lib.optionalString stdenv.cc.isClang "-std=c++11";
2017-09-03 09:05:57 +00:00
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 ];
};
}