blob: e4668294108c1171f663c6fc8a5c93607f0ff8fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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 ];
};
}
|