diff options
Diffstat (limited to 'overlays/smartprom/default.nix')
-rw-r--r-- | overlays/smartprom/default.nix | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/overlays/smartprom/default.nix b/overlays/smartprom/default.nix new file mode 100644 index 00000000..0dd0771b --- /dev/null +++ b/overlays/smartprom/default.nix | |||
@@ -0,0 +1,19 @@ | |||
1 | { final, prev, flakeInputs, sources, ... }: | ||
2 | { | ||
3 | smartprom = flakeInputs.mach-nix.lib.${final.system}.buildPythonPackage rec { | ||
4 | inherit (sources.smartprom) src pname version; | ||
5 | ignoreDataOutdated = true; | ||
6 | |||
7 | prePatch = '' | ||
8 | mkdir smartprom | ||
9 | mv smartprom.py smartprom/__main__.py | ||
10 | echo >> smartprom/__init__.py | ||
11 | |||
12 | substituteAll ${./setup.py} ./setup.py | ||
13 | ''; | ||
14 | |||
15 | requirements = '' | ||
16 | prometheus_client | ||
17 | ''; | ||
18 | }; | ||
19 | } | ||