{ lib , buildPythonPackage , fetchPypi , msrest , msrestazure , azure-common , azure-mgmt-nspkg , isPy3k }: buildPythonPackage rec { pname = "azure-mgmt-eventgrid"; version = "2.2.0"; src = fetchPypi { inherit pname version; extension = "zip"; sha256 = "1hqwcl33r98lriz3fp6h8ir36bv9danx27290idv63fj7s95h866"; }; propagatedBuildInputs = [ msrest msrestazure azure-common ] ++ lib.optionals (!isPy3k) [ azure-mgmt-nspkg ]; # has no tests doCheck = false; meta = with lib; { description = "This is the Microsoft Azure EventGrid Management Client Library"; homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/event-grid?view=azure-python; license = licenses.mit; maintainers = with maintainers; [ mwilsoninsight ]; }; }