pythonPackages.cligq: init at 0.4.0

This commit is contained in:
Josef Kemetmueller 2017-09-03 09:02:28 +00:00
parent d25edeb3ee
commit 4d70d53618
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ stdenv, buildPythonPackage, fetchPypi,
click
}:
buildPythonPackage rec {
pname = "cligj";
version = "0.4.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "0m1zic66nay2rymfa9krd3jfpyajxjnbmzw7c2q764aw9ychgb8j";
};
propagatedBuildInputs = [
click
];
meta = with stdenv.lib; {
description = "Click params for commmand line interfaces to GeoJSON";
homepage = https://github.com/mapbox/cligj;
license = licenses.bsd3;
maintainers = with maintainers; [ knedlsepp ];
};
}

View File

@ -3071,6 +3071,8 @@ in {
};
};
cligj = callPackage ../development/python-modules/cligj { };
clepy = buildPythonPackage rec {
name = "clepy-0.3.20";