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