Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 517 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "ansicolor"; 5 version = "0.2.6"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "d17e1b07b9dd7ded31699fbca53ae6cd373584f9b6dcbc124d1f321ebad31f1d"; 10 }; 11 12 meta = with stdenv.lib; { 13 homepage = "https://github.com/numerodix/ansicolor/"; 14 description = "A library to produce ansi color output and colored highlighting and diffing"; 15 license = licenses.asl20; 16 maintainers = with maintainers; [ andsild ]; 17 }; 18}