pythonPackages.azure-applicationinsights: init at 0.1.0

This commit is contained in:
Max Wilson
2019-07-16 14:53:32 -07:00
committed by Wael M. Nasreddine
parent d5dadfa059
commit a18f5138e1
2 changed files with 34 additions and 0 deletions
@@ -0,0 +1,32 @@
{ lib
, buildPythonPackage
, fetchPypi
, azure-common
, msrest
}:
buildPythonPackage rec {
pname = "azure-applicationinsights";
version = "0.1.0";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "6e1839169bb6ffd2d2c21ee3f4afbdd068ea428ad47cf884ea3167ecf7fd0859";
};
propagatedBuildInputs = [
azure-common
msrest
];
# has no tests
doCheck = false;
meta = with lib; {
description = "This is the Microsoft Azure Application Insights Client Library";
homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-applicotioninsights;
license = licenses.mit;
maintainers = with maintainers; [ mwilsoninsight ];
};
}