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:
commit
3bdfd75681
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue