1{
2 lib,
3 azure-common,
4 azure-mgmt-core,
5 buildPythonPackage,
6 fetchPypi,
7 setuptools,
8 isodate,
9 pythonOlder,
10}:
11
12buildPythonPackage rec {
13 pname = "azure-mgmt-keyvault";
14 version = "12.0.0";
15 pyproject = true;
16
17 disabled = pythonOlder "3.8";
18
19 src = fetchPypi {
20 pname = "azure_mgmt_keyvault";
21 inherit version;
22 hash = "sha256-4s8Y6KSSi10cqxJ75C6prQJG1ofKEvwnoq1mSHzhyGs=";
23 };
24
25 build-system = [ setuptools ];
26
27 dependencies = [
28 azure-common
29 azure-mgmt-core
30 isodate
31 ];
32
33 pythonNamespaces = [ "azure.mgmt" ];
34
35 pythonImportsCheck = [ "azure.mgmt.keyvault" ];
36
37 # Module has no tests
38 doCheck = false;
39
40 meta = with lib; {
41 description = "This is the Microsoft Azure Key Vault Management Client Library";
42 homepage = "https://github.com/Azure/azure-sdk-for-python";
43 changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-keyvault_${version}/sdk/keyvault/azure-mgmt-keyvault/CHANGELOG.md";
44 license = licenses.mit;
45 maintainers = with maintainers; [ maxwilson ];
46 };
47}