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