pythonPackages.cligq: init at 0.4.0
This commit is contained in:
25
pkgs/development/python-modules/cligj/default.nix
Normal file
25
pkgs/development/python-modules/cligj/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user