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

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

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

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