Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 572 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "Twiggy"; 8 version = "0.4.7"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "44d8aa51110efaab0712b5ec2b015149ad4f28e28f729004aac45d0ad8e19be0"; 13 }; 14 15 doCheck = false; 16 17 meta = with stdenv.lib; { 18 homepage = http://twiggy.wearpants.org; 19 # Taken from http://i.wearpants.org/blog/meet-twiggy/ 20 description = "Twiggy is the first totally new design for a logger since log4j"; 21 license = licenses.bsd3; 22 maintainers = with maintainers; [ pierron ]; 23 }; 24 25}