f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
45 lines
847 B
Nix
45 lines
847 B
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchPypi,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
poetry-core,
|
|
colorama,
|
|
tabulate,
|
|
unidecode,
|
|
}:
|
|
python3Packages.buildPythonPackage rec {
|
|
pname = "cli-ui";
|
|
version = "0.17.2";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-L2flDPR052rRYMPmYLutmL+LjfuNhHdl86Jht+E8Bfo=";
|
|
};
|
|
|
|
pythonRelaxDeps = [ "tabulate" ];
|
|
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
dependencies = [
|
|
colorama
|
|
tabulate
|
|
unidecode
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "cli_ui" ];
|
|
|
|
meta = with lib; {
|
|
description = "Build Nice User Interfaces In The Terminal";
|
|
homepage = "https://github.com/your-tools/python-cli-ui";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ slashformotion ];
|
|
};
|
|
}
|