nixpkgs/pkgs/development/python-modules/prometheus_client/default.nix
2018-07-22 16:52:48 +02:00

20 lines
471 B
Nix

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "prometheus_client";
version = "0.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "69494dc1ac967c0f626c8193e439755c2b95dd4ed22ef31c277601778a50c7ff";
};
doCheck = false;
meta = with lib; {
description = "Prometheus instrumentation library for Python applications";
homepage = https://github.com/prometheus/client_python;
license = licenses.asl20;
};
}