depot/third_party/nixpkgs/pkgs/development/python-modules/autologging/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

24 lines
528 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 ];
};
}