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.10"; 9 pname = "applicationinsights"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "0b761f3ef0680acf4731906dfc1807faa6f2a57168ae74592db0084a6099f7b3"; 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}