{ lib, buildPythonPackage, fetchPypi, isPy27 , azure-common , azure-core , msrest }: buildPythonPackage rec { pname = "azure-keyvault-secrets"; version = "4.1.0"; disabled = isPy27; src = fetchPypi { inherit pname version; extension = "zip"; sha256 = "4f3bfac60e025e01dd1c1998b73649d45d706975356c0cf147174cf5a6ddf8be"; }; propagatedBuildInputs = [ azure-common azure-core msrest ]; pythonNamespaces = [ "azure.keyvault" ]; # requires checkout from mono-repo doCheck = false; meta = with lib; { description = "Microsoft Azure Key Vault Secrets Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python"; license = licenses.mit; maintainers = with maintainers; [ jonringer ]; }; }