0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

python312Packages.prometheus-api-client: refactor

This commit is contained in:
Fabian Affolter 2025-02-19 11:31:42 +01:00
parent 41f3fbb18e
commit c9f27209a1

View file

@ -8,13 +8,14 @@
matplotlib, matplotlib,
numpy, numpy,
pandas, pandas,
setuptools,
requests, requests,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "prometheus-api-client"; pname = "prometheus-api-client";
version = "0.5.7"; version = "0.5.7";
format = "setuptools"; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "4n4nd"; owner = "4n4nd";
@ -23,7 +24,9 @@ buildPythonPackage rec {
hash = "sha256-XmsBEGerEA7kEigkVpDYpe1UfEKvEzV/0uY3sffRC7s="; hash = "sha256-XmsBEGerEA7kEigkVpDYpe1UfEKvEzV/0uY3sffRC7s=";
}; };
propagatedBuildInputs = [ build-system = [ setuptools ];
dependencies = [
dateparser dateparser
matplotlib matplotlib
numpy numpy