Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ buildPythonPackage 2, lib 3, fetchPypi 4, portalocker 5}: 6 7buildPythonPackage rec { 8 version = "0.11.9"; 9 pname = "applicationinsights"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "1hyjdv6xnswgqvip8y164piwfach9hjkbp7vc2qzhd7amjpim89h"; 14 }; 15 16 propagatedBuildInputs = [ portalocker ]; 17 18 meta = with lib; { 19 description = "This project extends the Application Insights API surface to support Python"; 20 homepage = "https://github.com/Microsoft/ApplicationInsights-Python"; 21 license = licenses.mit; 22 maintainers = with maintainers; [ jonringer ]; 23 }; 24}