My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/rst2ansi/default.nix

20 lines
522 B

{ lib, buildPythonPackage, fetchPypi, docutils, }:
buildPythonPackage rec {
pname = "rst2ansi";
version = "0.1.5";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-Gxf7mmKNQPV5M60aOqlSNGREvgaUaVCOc+lQYNoz/m8=";
};
propagatedBuildInputs = [ docutils ];
meta = with lib; {
description = "A rst converter to ansi-decorated console output";
homepage = "https://github.com/Snaipe/python-rst-to-ansi";
license = licenses.mit;
maintainers = with maintainers; [ vojta001 ];
};
}