python3Packages.azure-appconfiguration: init at 1.1.0
This commit is contained in:
parent
61ae2b4715
commit
4d165d29de
2 changed files with 31 additions and 0 deletions
|
@ -0,0 +1,29 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, isPy27
|
||||
, azure-core
|
||||
, msrest
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "azure-appconfiguration";
|
||||
version = "1.1.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
extension = "zip";
|
||||
sha256 = "0mv053vl88nzpv701gnjdmbylc8qm0kkq87264rfhvrx3ydymf97";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
azure-core
|
||||
msrest
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "azure.appconfiguration" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Microsoft App Configuration Data Library for Python";
|
||||
homepage = "https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/appconfiguration/azure-appconfiguration";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ jonringer ];
|
||||
};
|
||||
}
|
|
@ -494,6 +494,8 @@ in {
|
|||
|
||||
aws-xray-sdk = callPackage ../development/python-modules/aws-xray-sdk { };
|
||||
|
||||
azure-appconfiguration = callPackage ../development/python-modules/azure-appconfiguration { };
|
||||
|
||||
azure-applicationinsights = callPackage ../development/python-modules/azure-applicationinsights { };
|
||||
|
||||
azure-batch = callPackage ../development/python-modules/azure-batch { };
|
||||
|
|
Loading…
Reference in a new issue