python3Packages.azure-appconfiguration: init at 1.1.0

This commit is contained in:
Jonathan Ringer 2020-09-28 11:08:34 -07:00 committed by Jon
parent 61ae2b4715
commit 4d165d29de
2 changed files with 31 additions and 0 deletions

View file

@ -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 ];
};
}

View file

@ -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 { };