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

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

  src = fetchPypi {
    pname = "Autologging";
    inherit 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 ];
  };
}