{ lib , buildPythonPackage , fetchPypi , msrest , msrestazure , azure-common , azure-mgmt-nspkg }: buildPythonPackage rec { pname = "azure-mgmt-keyvault"; version = "1.1.0"; src = fetchPypi { inherit pname version; extension = "zip"; sha256 = "05a15327a922441d2ba32add50a35c7f1b9225727cbdd3eeb98bc656e4684099"; }; propagatedBuildInputs = [ msrest msrestazure azure-common azure-mgmt-nspkg ]; # has no tests doCheck = false; meta = with lib; { description = "This is the Microsoft Azure Key Vault Management Client Library"; homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/key-vault?view=azure-python; license = licenses.mit; maintainers = with maintainers; [ mwilsoninsight ]; }; }