Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 azure-common, 4 azure-mgmt-core, 5 buildPythonPackage, 6 fetchPypi, 7 isodate, 8 pythonOlder, 9}: 10 11buildPythonPackage rec { 12 pname = "azure-mgmt-keyvault"; 13 version = "10.3.0"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.8"; 17 18 src = fetchPypi { 19 inherit pname version; 20 hash = "sha256-GDtBZM8YaLjqfv6qmO2tfSpOFKm9l3woGLErdRUM0qI="; 21 }; 22 23 propagatedBuildInputs = [ 24 azure-common 25 azure-mgmt-core 26 isodate 27 ]; 28 29 pythonNamespaces = [ "azure.mgmt" ]; 30 31 # Module 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 changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-keyvault_${version}/sdk/keyvault/azure-mgmt-keyvault/CHANGELOG.md"; 38 license = licenses.mit; 39 maintainers = with maintainers; [ 40 jonringer 41 maxwilson 42 ]; 43 }; 44}