summaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/autologging/default.nix
blob: 435eb2cabe41c7cff286b54c7525d544862a8c68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
  lib,
  buildPythonPackage,
  fetchPypi,
  setuptools,
}:

buildPythonPackage (finalAttrs: {
  pname = "autologging";
  version = "1.3.2";
  pyproject = true;

  src = fetchPypi {
    pname = "Autologging";
    inherit (finalAttrs) version;
    hash = "sha256-EXZZWE2Kq4z2IEb2gvjle1TZWLhXHHN/qL8Vwyk3+7Y=";
    extension = "zip";
  };

  build-system = [ setuptools ];

  meta = {
    description = "Easier logging and tracing for Python classes";
    homepage = "https://github.com/mzipay/Autologging";
    changelog = "https://github.com/mzipay/Autologging/releases/tag/${finalAttrs.version}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ twey ];
  };
})