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