ansicolor: init at 0.2.4

This commit is contained in:
asildnes 2017-02-05 11:44:10 +01:00
parent 90bc1a8595
commit 102e4eed6f
No known key found for this signature in database
GPG key ID: 5BE9DE7FF21E68FE

View file

@ -152,6 +152,23 @@ in {
};
};
ansicolor = buildPythonPackage rec {
name = "ansicolor-${version}";
version = "0.2.4";
src = pkgs.fetchurl{
url = "mirror://pypi/a/ansicolor/${name}.tar.gz";
sha256 = "0zlkk9706xn5yshwzdn8xsfkim8iv44zsl6qjwg2f4gn62rqky1h";
};
meta = {
homepage = "https://github.com/numerodix/ansicolor/";
description = "A library to produce ansi color output and colored highlighting and diffing";
license = licenses.asl20;
maintainers = with maintainers; [ andsild ];
};
};
# packages defined elsewhere
blivet = callPackage ../development/python-modules/blivet { };