nixpkgs/pkgs/development/python-modules/ansimarkup/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
728 B
Nix
Raw Normal View History

{
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 ];
};
}