Files
nixpkgs/pkgs/development/python-modules/zenlog/default.nix
S0AndS0 fbbb3b9e5f zenlog: init at 1.1
Only consumer currently is `pkgs.radio-active`
2025-09-13 13:51:47 -07:00

33 lines
693 B
Nix

{
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 ];
};
}