nixpkgs/pkgs/development/python-modules/ansicolor/default.nix
2020-04-10 17:54:53 +01:00

19 lines
517 B
Nix

{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "ansicolor";
version = "0.2.6";
src = fetchPypi {
inherit pname version;
sha256 = "d17e1b07b9dd7ded31699fbca53ae6cd373584f9b6dcbc124d1f321ebad31f1d";
};
meta = with stdenv.lib; {
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 ];
};
}