1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, nose
5}:
6
7buildPythonPackage rec {
8 version = "0.1.11";
9 pname = "python-json-logger";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "b7a31162f2a01965a5efb94453ce69230ed208468b0bbc7fdfc56e6d8df2e281";
14 };
15
16 checkInputs = [ nose ];
17
18 meta = with stdenv.lib; {
19 homepage = "https://github.com/madzak/python-json-logger";
20 description = "A python library adding a json log formatter";
21 license = licenses.bsdOriginal;
22 maintainers = [ maintainers.costrouc ];
23 };
24
25}