1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "ansicolor"; 5 version = "0.3.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "3b840a6b1184b5f1568635b1adab28147947522707d41ceba02d5ed0a0877279"; 10 }; 11 12 meta = with 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}