02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
21 lines
545 B
Nix
21 lines
545 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 = "A rst converter to ansi-decorated console output";
|
|
homepage = "https://github.com/Snaipe/python-rst-to-ansi";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ vojta001 ];
|
|
};
|
|
}
|