mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
37 lines
772 B
Nix
37 lines
772 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
pytestCheckHook,
|
|
colorama,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ansimarkup";
|
|
version = "2.1.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gvalkov";
|
|
repo = "python-ansimarkup";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-+kZt8tv09RHrMRZtvJPBBiFaeCksXyrlHqIabPrXYDY=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ 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 ];
|
|
};
|
|
}
|