567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
26 lines
551 B
Nix
26 lines
551 B
Nix
{
|
|
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 ];
|
|
};
|
|
}
|