blob: c95735bb0ced17bc5899433bcee9e006c87c70e0 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "autologging";
version = "1.3.2";
format = "setuptools";
src = fetchPypi {
pname = "Autologging";
inherit version;
sha256 = "117659584d8aab8cf62046f682f8e57b54d958b8571c737fa8bf15c32937fbb6";
extension = "zip";
};
meta = {
homepage = "https://ninthtest.info/python-autologging/";
description = "Easier logging and tracing for Python classes";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ twey ];
};
}
|