pythonPackages.clikit: init at 0.2.3
This commit is contained in:
parent
1b22109904
commit
8aa6c116f2
2 changed files with 32 additions and 0 deletions
30
pkgs/development/python-modules/clikit/default.nix
Normal file
30
pkgs/development/python-modules/clikit/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ lib, buildPythonPackage, fetchPypi
|
||||
, isPy27, isPy34
|
||||
, pylev, pastel, typing, enum34 }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "clikit";
|
||||
version = "0.2.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0zr1s0xhk62p9a6zcp5whvsb27lddyk8gx03k9l8q18jp7y3igbv";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pylev pastel
|
||||
] ++ lib.optional (isPy27 || isPy34) typing
|
||||
++ lib.optional isPy27 enum34;
|
||||
|
||||
# The Pypi tarball doesn't include tests, and the GitHub source isn't
|
||||
# buildable until we bootstrap poetry, see
|
||||
# https://github.com/NixOS/nixpkgs/pull/53599#discussion_r245855665
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = https://github.com/sdispater/clikit;
|
||||
description = "A group of utilities to build beautiful and testable command line interfaces";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ jakewaksbaum ];
|
||||
};
|
||||
}
|
|
@ -290,6 +290,8 @@ in {
|
|||
|
||||
chalice = callPackage ../development/python-modules/chalice { };
|
||||
|
||||
clikit = callPackage ../development/python-modules/clikit { };
|
||||
|
||||
clustershell = callPackage ../development/python-modules/clustershell { };
|
||||
|
||||
cozy = callPackage ../development/python-modules/cozy { };
|
||||
|
|
Loading…
Reference in a new issue