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