paperwork: fix installing translations (#370379)
[NixPkgs.git] / pkgs / development / python-modules / twiggy / default.nix
blob1c1759aeb81527e448e3c62d1d0d5c83d3c4b62e
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   six,
6 }:
8 buildPythonPackage rec {
9   pname = "twiggy";
10   version = "0.5.1";
12   src = fetchPypi {
13     pname = "Twiggy";
14     inherit version;
15     sha256 = "7938840275972f6ce89994a5bdfb0b84f0386301a043a960af6364952e78ffe4";
16   };
18   propagatedBuildInputs = [ six ];
19   doCheck = false;
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   };