pythonPackages.azure-applicationinsights: init at 0.1.0
This commit is contained in:
parent
d5dadfa059
commit
a18f5138e1
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -242,6 +242,8 @@ in {
|
|||||||
|
|
||||||
azure-cosmos = callPackage ../development/python-modules/azure-cosmos { };
|
azure-cosmos = callPackage ../development/python-modules/azure-cosmos { };
|
||||||
|
|
||||||
|
azure-applicationinsights = callPackage ../development/python-modules/azure-applicationinsights { };
|
||||||
|
|
||||||
azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { };
|
azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { };
|
||||||
|
|
||||||
azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { };
|
azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user