2019-01-07 09:06:48 -08:00
|
|
|
{ lib, buildPythonPackage, fetchPypi
|
2020-05-04 11:32:01 -07:00
|
|
|
, isPy27
|
2019-01-07 09:06:48 -08:00
|
|
|
, pylev, pastel, typing, enum34 }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "clikit";
|
2020-06-05 23:47:01 -07:00
|
|
|
version = "0.6.1";
|
2019-01-07 09:06:48 -08:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-05 23:47:01 -07:00
|
|
|
sha256 = "0603e3c19fa106f5df5f224826c92e57221f48ec969e42744173e0458d359354";
|
2019-01-07 09:06:48 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
pylev pastel
|
2020-05-04 11:32:01 -07:00
|
|
|
] ++ lib.optionals isPy27 [ typing enum34 ];
|
2019-01-07 09:06:48 -08:00
|
|
|
|
|
|
|
# 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; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/sdispater/clikit";
|
2019-01-07 09:06:48 -08:00
|
|
|
description = "A group of utilities to build beautiful and testable command line interfaces";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ jakewaksbaum ];
|
|
|
|
};
|
|
|
|
}
|