click_5: init at 5.1
This commit is contained in:
parent
c87ef76027
commit
ecac5e9f67
1 changed files with 20 additions and 0 deletions
|
@ -2629,6 +2629,26 @@ in modules // {
|
|||
};
|
||||
};
|
||||
|
||||
click_5 = buildPythonPackage rec {
|
||||
name = "click-5.1";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/c/click/${name}.tar.gz";
|
||||
sha256 = "0njsm0wn31l21bi118g5825ma5sa3rwn7v2x4wjd7yiiahkri337";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = http://click.pocoo.org/;
|
||||
description = "Create beautiful command line interfaces in Python";
|
||||
longDescription = ''
|
||||
A Python package for creating beautiful command line interfaces in a
|
||||
composable way, with as little code as necessary.
|
||||
'';
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ mog ];
|
||||
};
|
||||
};
|
||||
|
||||
click-log = buildPythonPackage rec {
|
||||
version = "0.1.1";
|
||||
name = "click-log-${version}";
|
||||
|
|
Loading…
Reference in a new issue