Commit fbbb3b9e authored by S0AndS0's avatar S0AndS0
Browse files

zenlog: init at 1.1

Only consumer currently is `pkgs.radio-active`
parent 54017373
Loading
Loading
Loading
Loading
+32 −0
Original line number Diff line number Diff line
{
  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 −0
Original line number Diff line number Diff line
@@ -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 { };