bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
33 lines
728 B
Nix
33 lines
728 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
colorama,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ansimarkup";
|
|
version = "1.5.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gvalkov";
|
|
repo = "python-ansimarkup";
|
|
rev = "v${version}";
|
|
hash = "sha256-HGeVapv2Z5GtPwSp3+dvUwAH0bFqu+Bmk5E6SRr7NO4=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ colorama ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "ansimarkup" ];
|
|
|
|
meta = with lib; {
|
|
description = "XML-like markup for producing colored terminal text";
|
|
homepage = "https://github.com/gvalkov/python-ansimarkup";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ cpcloud ];
|
|
};
|
|
}
|