My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/autologging/default.nix

19 lines
500 B

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "Autologging";
version = "1.3.2";
src = fetchPypi {
inherit pname 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 ];
};
}