1{ lib, buildPythonPackage, fetchPypi, azure-core
2, msrest
3}:
4
5buildPythonPackage rec {
6 pname = "azure-appconfiguration";
7 version = "1.3.0";
8
9 src = fetchPypi {
10 inherit pname version;
11 extension = "zip";
12 sha256 = "9372467c74930d20827135d468b7fcaa1ad42e4673a4591ceadbb6ad8e1b7e07";
13 };
14
15 propagatedBuildInputs = [
16 azure-core
17 msrest
18 ];
19
20 pythonImportsCheck = [ "azure.appconfiguration" ];
21
22 meta = with lib; {
23 description = "Microsoft App Configuration Data Library for Python";
24 homepage = "https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/appconfiguration/azure-appconfiguration";
25 license = licenses.mit;
26 maintainers = with maintainers; [ jonringer ];
27 };
28}