-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.nix
More file actions
39 lines (34 loc) · 883 Bytes
/
default.nix
File metadata and controls
39 lines (34 loc) · 883 Bytes
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
34
35
36
37
38
39
{
lib ? (import <nixpkgs> {}).lib,
python3Packages ? (import <nixpkgs> {}).python3Packages,
}:
python3Packages.buildPythonApplication {
pname = "pushlog";
version = "0.3.1";
format = "pyproject";
src = ./.;
nativeBuildInputs = with python3Packages; [
setuptools
];
propagatedBuildInputs = with python3Packages; [
click
fuzzywuzzy
levenshtein
pyyaml
systemd
];
checkInputs = with python3Packages; [
pytestCheckHook
];
meta = {
description = "Pushlog systemd journal forwarder";
longDescription = ''
A lightweight Python daemon that filters and forwards journald log messages to Pushover
'';
homepage = "https://github.com/serpent213/pushlog";
platforms = lib.platforms.linux;
mainProgram = "pushlog";
license = lib.licenses.bsd0;
maintainers = with lib.maintainers; [serpent213];
};
}