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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "117659584d8aab8cf62046f682f8e57b54d958b8571c737fa8bf15c32937fbb6";
    extension = "zip";
  };

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