Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 19 lines 473 B view raw
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "prometheus_client"; 5 version = "0.8.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "c6e6b706833a6bd1fd51711299edee907857be10ece535126a158f911ee80915"; 10 }; 11 12 doCheck = false; 13 14 meta = with lib; { 15 description = "Prometheus instrumentation library for Python applications"; 16 homepage = "https://github.com/prometheus/client_python"; 17 license = licenses.asl20; 18 }; 19}