bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
27 lines
581 B
Nix
27 lines
581 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
docutils,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "rst2ansi";
|
|
version = "0.1.5";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-Gxf7mmKNQPV5M60aOqlSNGREvgaUaVCOc+lQYNoz/m8=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ docutils ];
|
|
|
|
meta = with lib; {
|
|
description = "Rst converter to ansi-decorated console output";
|
|
mainProgram = "rst2ansi";
|
|
homepage = "https://github.com/Snaipe/python-rst-to-ansi";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ vojta001 ];
|
|
};
|
|
}
|