about summary refs log tree commit diff
path: root/pkgs/development/python-modules/autologging/default.nix
blob: 090eb68675bc430f8c5cf5e168075ba3a0b1883b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "Autologging";
  version = "1.2.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "16v2k16m433fxlvl7f0081n67rpxhs2hyn1ivkx1xs5qjxpv5n3k";
    extension = "zip";
  };

  meta = with stdenv.lib; {
    homepage = http://ninthtest.info/python-autologging/;
    description = "Easier logging and tracing for Python classes";
    license = licenses.mit;
    maintainers = with maintainers; [ twey ];
  };
}