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