depot/third_party/nixpkgs/pkgs/development/python-modules/autologging/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

20 lines
521 B
Nix

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