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