zenlog: init at 1.1

Only consumer currently is `pkgs.radio-active`
This commit is contained in:
S0AndS0
2025-09-13 13:51:47 -07:00
parent 5401737361
commit fbbb3b9e5f
2 changed files with 34 additions and 0 deletions
@@ -0,0 +1,32 @@
{
buildPythonPackage,
fetchPypi,
lib,
colorlog,
setuptools,
}:
let
pname = "zenlog";
version = "1.1";
in
buildPythonPackage {
inherit pname version;
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-g0YKhfpySbgAfANoGmoLV1zm/gRDSTidPT1D9Y1Gh94=";
};
build-system = [ setuptools ];
dependencies = [ colorlog ];
meta = {
description = "Python script logging for the lazy";
homepage = "https://github.com/ManufacturaInd/python-zenlog";
changelog = "https://github.com/ManufacturaInd/python-zenlog/releases/tag/v${version}";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ S0AndS0 ];
};
}
+2
View File
@@ -20437,6 +20437,8 @@ self: super: with self; {
zeitgeist = (toPythonModule (pkgs.zeitgeist.override { python3 = python; })).py;
zenlog = callPackage ../development/python-modules/zenlog { };
zenoh = callPackage ../development/python-modules/zenoh { };
zephyr-python-api = callPackage ../development/python-modules/zephyr-python-api { };