1{ 2 buildPythonPackage, 3 lib, 4 fetchPypi, 5 portalocker, 6}: 7 8buildPythonPackage rec { 9 version = "0.11.10"; 10 format = "setuptools"; 11 pname = "applicationinsights"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "0b761f3ef0680acf4731906dfc1807faa6f2a57168ae74592db0084a6099f7b3"; 16 }; 17 18 propagatedBuildInputs = [ portalocker ]; 19 20 meta = with lib; { 21 description = "This project extends the Application Insights API surface to support Python"; 22 homepage = "https://github.com/Microsoft/ApplicationInsights-Python"; 23 license = licenses.mit; 24 maintainers = [ ]; 25 }; 26}