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