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/ansimarkup/default.nix

31 lines
696 B

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, colorama
}:
buildPythonPackage rec {
pname = "ansimarkup";
version = "1.5.0";
src = fetchFromGitHub {
owner = "gvalkov";
repo = "python-ansimarkup";
rev = "v${version}";
sha256 = "sha256-HGeVapv2Z5GtPwSp3+dvUwAH0bFqu+Bmk5E6SRr7NO4=";
};
propagatedBuildInputs = [ colorama ];
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "ansimarkup" ];
meta = with lib; {
description = "An XML-like markup for producing colored terminal text.";
homepage = "https://github.com/gvalkov/python-ansimarkup";
license = licenses.bsd3;
maintainers = with maintainers; [ cpcloud ];
};
}