blob: 5117e730c7689f502ff66b4b0f1a4d0870651c5f (
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
33
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
}:
buildPythonPackage rec {
pname = "logging-journald";
version = "0.6.7";
pyproject = true;
src = fetchFromGitHub {
owner = "mosquito";
repo = "logging-journald";
tag = version;
hash = "sha256-RQ9opkAOZfhYuqOXJ2Mtnig8soL+lCveYH2YdXL1AGM=";
};
nativeBuildInputs = [ poetry-core ];
# Circular dependency with aiomisc
doCheck = false;
pythonImportsCheck = [ "logging_journald" ];
meta = {
description = "Logging handler for writing logs to the journald";
homepage = "https://github.com/mosquito/logging-journald";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|