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.
2 parents 732e35c + c9f2720 commit cdbb117Copy full SHA for cdbb117
pkgs/development/python-modules/prometheus-api-client/default.nix
@@ -8,22 +8,25 @@
8
matplotlib,
9
numpy,
10
pandas,
11
+ setuptools,
12
requests,
13
}:
14
15
buildPythonPackage rec {
16
pname = "prometheus-api-client";
- version = "0.5.6";
17
- format = "setuptools";
+ version = "0.5.7";
18
+ pyproject = true;
19
20
src = fetchFromGitHub {
21
owner = "4n4nd";
22
repo = "prometheus-api-client-python";
23
tag = "v${version}";
- hash = "sha256-0vnG0m+RV2Z9GIMJ/R0edjcjyPH1OvB8zERCMeyRuRg=";
24
+ hash = "sha256-XmsBEGerEA7kEigkVpDYpe1UfEKvEzV/0uY3sffRC7s=";
25
};
26
- propagatedBuildInputs = [
27
+ build-system = [ setuptools ];
28
+
29
+ dependencies = [
30
dateparser
31
matplotlib
32
numpy
0 commit comments