mirror of
https://github.com/denismhz/flake.git
synced 2025-11-09 16:16:23 +01:00
28 lines
559 B
Nix
28 lines
559 B
Nix
|
|
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, poetry-core
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "rich";
|
|
version = "13.7.0";
|
|
format = "pyproject";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-XLUSO1z57nBYQkQkaBbpEUIn4LmK2Rdu7eatVL9UA/o=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ poetry-core ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Rich is a Python library for rich text and beautiful formatting in the terminal.";
|
|
homepage = "https://github.com/Textualize/rich";
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|