1{
2 lib,
3 azure-common,
4 azure-mgmt-core,
5 buildPythonPackage,
6 fetchPypi,
7 isodate,
8 pythonOlder,
9 setuptools,
10}:
11
12buildPythonPackage rec {
13 pname = "azure-mgmt-appconfiguration";
14 version = "5.0.0";
15 pyproject = true;
16
17 disabled = pythonOlder "3.9";
18
19 src = fetchPypi {
20 pname = "azure_mgmt_appconfiguration";
21 inherit version;
22 hash = "sha256-+PD4G3kNHtd7vAUuzc97EwkfrYixDB8/RxAA29nCCXc=";
23 };
24
25 build-system = [ setuptools ];
26
27 dependencies = [
28 azure-common
29 azure-mgmt-core
30 isodate
31 ];
32
33 # no tests included
34 doCheck = false;
35
36 pythonNamespaces = [ "azure.mgmt" ];
37
38 pythonImportsCheck = [
39 "azure.common"
40 "azure.mgmt.appconfiguration"
41 ];
42
43 meta = with lib; {
44 description = "Microsoft Azure App Configuration Management Client Library for Python";
45 homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/appconfiguration/azure-mgmt-appconfiguration";
46 changelog = "https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-appconfiguration_${version}/sdk/appconfiguration/azure-mgmt-appconfiguration/CHANGELOG.md";
47 license = licenses.mit;
48 maintainers = [ ];
49 };
50}