We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41f3fbb commit c9f2720Copy full SHA for c9f2720
pkgs/development/python-modules/prometheus-api-client/default.nix
@@ -8,13 +8,14 @@
8
matplotlib,
9
numpy,
10
pandas,
11
+ setuptools,
12
requests,
13
}:
14
15
buildPythonPackage rec {
16
pname = "prometheus-api-client";
17
version = "0.5.7";
- format = "setuptools";
18
+ pyproject = true;
19
20
src = fetchFromGitHub {
21
owner = "4n4nd";
@@ -23,7 +24,9 @@ buildPythonPackage rec {
23
24
hash = "sha256-XmsBEGerEA7kEigkVpDYpe1UfEKvEzV/0uY3sffRC7s=";
25
};
26
- propagatedBuildInputs = [
27
+ build-system = [ setuptools ];
28
+
29
+ dependencies = [
30
dateparser
31
matplotlib
32
numpy
0 commit comments