main
nix 18 lines 277 Bytes
Raw
1 { python3Packages }:
2
3 with python3Packages;
4
5 buildPythonApplication {
6 pname = "prometheus-nixos-exporter";
7 version = "0.0";
8 format = "pyproject";
9
10 src = ./.;
11
12 nativeBuildInputs = [ setuptools ];
13
14 propagatedBuildInputs = [
15 packaging
16 prometheus-client
17 ];
18 }