Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / twiggy / default.nix
blobd25fd36a0d919e0416f4545f29260c599cb048af
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , six
5 }:
7 buildPythonPackage rec {
8   pname = "twiggy";
9   version = "0.5.1";
11   src = fetchPypi {
12     pname = "Twiggy";
13     inherit version;
14     sha256 = "7938840275972f6ce89994a5bdfb0b84f0386301a043a960af6364952e78ffe4";
15   };
17   propagatedBuildInputs = [ six ];
18   doCheck = false;
20   meta = with lib; {
21     homepage = "http://twiggy.wearpants.org";
22     # Taken from http://i.wearpants.org/blog/meet-twiggy/
23     description = "Twiggy is the first totally new design for a logger since log4j";
24     license     = licenses.bsd3;
25     maintainers = with maintainers; [ pierron ];
26   };