1{ lib
2, buildPythonPackage
3, fetchPypi
4, msrest
5, msrestazure
6, azure-common
7, azure-mgmt-nspkg
8, azure-mgmt-core
9}:
10
11buildPythonPackage rec {
12 pname = "azure-mgmt-keyvault";
13 version = "9.2.0";
14
15 src = fetchPypi {
16 inherit pname version;
17 extension = "zip";
18 sha256 = "37ecd44c49ceca7d7c9431e59148febd15d7fec261651ed72ddd58755e7450b0";
19 };
20
21 propagatedBuildInputs = [
22 msrest
23 msrestazure
24 azure-common
25 azure-mgmt-core
26 azure-mgmt-nspkg
27 ];
28
29 pythonNamespaces = [ "azure.mgmt" ];
30
31 # has no tests
32 doCheck = false;
33
34 meta = with lib; {
35 description = "This is the Microsoft Azure Key Vault Management Client Library";
36 homepage = "https://github.com/Azure/azure-sdk-for-python";
37 license = licenses.mit;
38 maintainers = with maintainers; [ jonringer maxwilson ];
39 };
40}