pythonPackages.cliff: init at 2.15.0

This commit is contained in:
Chris Ostrouchov 2019-07-11 14:47:07 -04:00 committed by Frederik Rietdijk
parent dbb1178123
commit b335544551
2 changed files with 47 additions and 0 deletions

@ -0,0 +1,45 @@
{ lib
, buildPythonPackage
, fetchPypi
, pbr
, prettytable
, pyparsing
, six
, stevedore
, pyyaml
, unicodecsv
, cmd2
}:
buildPythonPackage rec {
pname = "cliff";
version = "2.15.0";
src = fetchPypi {
inherit pname version;
sha256 = "fe044273539250a99a5b9915843902e40e4e9b32ac5698c1fae89e31200d649f";
};
propagatedBuildInputs = [
pbr
prettytable
pyparsing
six
stevedore
pyyaml
cmd2
unicodecsv
];
# test dependencies are complex
# and would require about 20 packages
# to be added
doCheck = false;
meta = with lib; {
description = "Command Line Interface Formulation Framework";
homepage = https://docs.openstack.org/cliff/latest/;
license = licenses.asl20;
maintainers = [ maintainers.costrouc ];
};
}

@ -328,6 +328,8 @@ in {
clikit = callPackage ../development/python-modules/clikit { };
cliff = callPackage ../development/python-modules/cliff { };
clustershell = callPackage ../development/python-modules/clustershell { };
cozy = callPackage ../development/python-modules/cozy { };