rich-cli: init at 1.5.1
This commit is contained in:
parent
7a0501594d
commit
22208a7a6e
32
pkgs/misc/rich-cli/default.nix
Normal file
32
pkgs/misc/rich-cli/default.nix
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{ lib, python3 }:
|
||||||
|
|
||||||
|
python3.pkgs.buildPythonApplication rec {
|
||||||
|
pname = "rich-cli";
|
||||||
|
version = "1.5.1";
|
||||||
|
|
||||||
|
src = python3.pkgs.fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "18qpdaw4drkwq71xikngwaarkjxhfc0nrb1zm36rw31b8dz0ij2k";
|
||||||
|
};
|
||||||
|
|
||||||
|
format = "pyproject";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ python3.pkgs.poetry-core ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
|
rich
|
||||||
|
click
|
||||||
|
requests
|
||||||
|
textual
|
||||||
|
rich-rst
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [ python3 ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/Textualize/rich-cli";
|
||||||
|
description = "Command Line Interface to Rich";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ jyooru ];
|
||||||
|
};
|
||||||
|
}
|
@ -9384,6 +9384,8 @@ with pkgs;
|
|||||||
rekor-cli
|
rekor-cli
|
||||||
rekor-server;
|
rekor-server;
|
||||||
|
|
||||||
|
rich-cli = callPackage ../misc/rich-cli { };
|
||||||
|
|
||||||
richgo = callPackage ../development/tools/richgo { };
|
richgo = callPackage ../development/tools/richgo { };
|
||||||
|
|
||||||
rs = callPackage ../tools/text/rs { };
|
rs = callPackage ../tools/text/rs { };
|
||||||
|
Loading…
Reference in New Issue
Block a user