1{ lib, buildPythonPackage, fetchPypi, docutils, }: 2 3buildPythonPackage rec { 4 pname = "rst2ansi"; 5 version = "0.1.5"; 6 7 src = fetchPypi { 8 inherit pname version; 9 hash = "sha256-Gxf7mmKNQPV5M60aOqlSNGREvgaUaVCOc+lQYNoz/m8="; 10 }; 11 12 propagatedBuildInputs = [ docutils ]; 13 14 meta = with lib; { 15 description = "A rst converter to ansi-decorated console output"; 16 homepage = "https://github.com/Snaipe/python-rst-to-ansi"; 17 license = licenses.mit; 18 maintainers = with maintainers; [ vojta001 ]; 19 }; 20}