{ pkgs , buildPythonPackage , fetchPypi , azure-mgmt-core , azure-mgmt-common , isPy3k }: buildPythonPackage rec { version = "16.1.0"; pname = "azure-mgmt-resource"; disabled = !isPy3k; src = fetchPypi { inherit pname version; extension = "zip"; sha256 = "b814ee27b37f030fe69461ef6f514661340dc8b1f28736362541e1c0d31d90ae"; }; propagatedBuildInputs = [ azure-mgmt-common azure-mgmt-core ]; # has no tests doCheck = false; pythonNamespaces = [ "azure.mgmt" ]; pythonImportsCheck = [ "azure.mgmt.resource" ]; meta = with pkgs.lib; { description = "Microsoft Azure SDK for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python"; license = licenses.mit; maintainers = with maintainers; [ olcai maxwilson jonringer ]; }; }