1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 06:01:15 +00:00

Merge pull request #22462 from andsild/ansicolor

ansicolor: init at 0.2.4
This commit is contained in:
Alexey Shmalko 2017-02-05 20:56:12 +02:00 committed by GitHub
commit 3bdfd75681

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