python.pkgs.ansi: add meta

This commit is contained in:
Robert Schütz 2018-08-03 14:21:52 +02:00
parent 433ffc32ea
commit 88208439ea

View file

@ -1,4 +1,4 @@
{ buildPythonPackage, fetchPypi }:
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "ansi";
@ -12,4 +12,10 @@ buildPythonPackage rec {
checkPhase = ''
python -c "import ansi.color"
'';
meta = with lib; {
description = "ANSI cursor movement and graphics";
homepage = https://github.com/tehmaze/ansi/;
license = licenses.mit;
};
}