1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, six
5}:
6
7buildPythonPackage rec {
8 pname = "Twiggy";
9 version = "0.5.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "259ae96cb22e80c49e75c37dc2f7497028c5dc19018958f05fa00ec08fc2569f";
14 };
15
16 propagatedBuildInputs = [ six ];
17 doCheck = false;
18
19 meta = with stdenv.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}