mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
46 lines
897 B
Nix
46 lines
897 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
poetry-core,
|
|
colorama,
|
|
tabulate,
|
|
unidecode,
|
|
buildPythonPackage,
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "cli-ui";
|
|
version = "0.18.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "your-tools";
|
|
repo = "python-cli-ui";
|
|
tag = "v${version}";
|
|
hash = "sha256-kEML+V15bjSMoSf2NFc48A0ADsZ3nagllBpEXesMccc=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|