pythonPackages.fiona: init at 1.7.9
This commit is contained in:
parent
f039bb6b4e
commit
aad9a691ab
41
pkgs/development/python-modules/fiona/default.nix
Normal file
41
pkgs/development/python-modules/fiona/default.nix
Normal file
@ -0,0 +1,41 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi,
|
||||
six, cligj, munch, click-plugins, enum34, pytest, nose,
|
||||
gdal
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "Fiona";
|
||||
version = "1.7.9";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1fmdgpfnifaqfqwkfiwkpk19wmpi9avmh8a7jqylqi578jvp3fwi";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -9917,6 +9917,8 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
fiona = callPackage ../development/python-modules/fiona { gdal = pkgs.gdal; };
|
||||
|
||||
flake8 = callPackage ../development/python-modules/flake8 { };
|
||||
|
||||
flake8-blind-except = callPackage ../development/python-modules/flake8-blind-except { };
|
||||
|
Loading…
Reference in New Issue
Block a user