1{ lib
2, buildPythonPackage
3, fetchPypi
4, six
5}:
6
7buildPythonPackage rec {
8 pname = "Twiggy";
9 version = "0.5.1";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "7938840275972f6ce89994a5bdfb0b84f0386301a043a960af6364952e78ffe4";
14 };
15
16 propagatedBuildInputs = [ six ];
17 doCheck = false;
18
19 meta = with lib; {
20 homepage = "http://twiggy.wearpants.org";
21 # Taken from http://i.wearpants.org/blog/meet-twiggy/
22 description = "Twiggy is the first totally new design for a logger since log4j";
23 license = licenses.bsd3;
24 maintainers = with maintainers; [ pierron ];
25 };
26
27}