{ lib , buildPythonPackage , fetchPypi , azure-mgmt-common , azure-mgmt-core }: buildPythonPackage rec { version = "23.1.0"; pname = "azure-mgmt-compute"; src = fetchPypi { inherit pname version; extension = "zip"; sha256 = "49dbb0f51006d557cbd0b22999cb9ecf3eabc2be46d96efcc6d651c6b33754b3"; }; propagatedBuildInputs = [ azure-mgmt-common azure-mgmt-core ]; pythonNamespaces = [ "azure.mgmt" ]; # has no tests doCheck = false; pythonImportsCheck = [ "azure.mgmt.compute" ]; meta = with lib; { description = "This is the Microsoft Azure Compute Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; license = licenses.mit; maintainers = with maintainers; [ olcai maxwilson ]; }; }