2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi }:
|
2018-11-06 12:02:33 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "Autologging";
|
2019-10-24 07:47:24 +01:00
|
|
|
version = "1.3.2";
|
2018-11-06 12:02:33 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-24 07:47:24 +01:00
|
|
|
sha256 = "117659584d8aab8cf62046f682f8e57b54d958b8571c737fa8bf15c32937fbb6";
|
2018-11-06 12:02:33 +00:00
|
|
|
extension = "zip";
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2021-07-31 18:01:50 +01:00
|
|
|
homepage = "https://ninthtest.info/python-autologging/";
|
2018-11-06 12:02:33 +00:00
|
|
|
description = "Easier logging and tracing for Python classes";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ twey ];
|
|
|
|
};
|
|
|
|
}
|