Skip to content

Commit

Permalink
pythonPackages.prometheus_client: init at 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fpletz committed May 11, 2018
1 parent 9d0202f commit 59a6f93
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
19 changes: 19 additions & 0 deletions pkgs/development/python-modules/prometheus_client/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{ lib, stdenv, buildPythonPackage, fetchPypi, pytest }:

buildPythonPackage rec {
pname = "prometheus_client";
version = "0.2.0";

src = fetchPypi {
inherit pname version;
sha256 = "1r3510jq6iryd2a8jln2qpvqy112y5502ncbfkn116xl7gj74r6r";
};

doCheck = false;

meta = with lib; {
description = "Prometheus instrumentation library for Python applications";
homepage = https://github.com/prometheus/client_python;
license = licenses.asl20;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18267,6 +18267,8 @@ EOF
coinmarketcap = callPackage ../development/python-modules/coinmarketcap { };

pyowm = callPackage ../development/python-modules/pyowm { };

prometheus_client = callPackage ../development/python-modules/prometheus_client { };
});

in fix' (extends overrides packages)

0 comments on commit 59a6f93

Please sign in to comment.