Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 19 lines 473 B view raw
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "prometheus_client"; 5 version = "0.9.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "9da7b32f02439d8c04f7777021c304ed51d9ec180604700c1ba72a4d44dceb03"; 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}