1{ lib 2, buildPythonPackage 3, fetchPypi 4, msrest 5, azure-common 6, azure-core 7, msrestazure 8}: 9 10buildPythonPackage rec { 11 pname = "azure-eventgrid"; 12 version = "4.5.0"; 13 14 src = fetchPypi { 15 inherit pname version; 16 extension = "zip"; 17 sha256 = "41ce94305fd3c4e2534f7663fb1be79819fc7d59f2b20544593ea6c914839351"; 18 }; 19 20 propagatedBuildInputs = [ 21 azure-common 22 azure-core 23 msrest 24 msrestazure 25 ]; 26 27 # has no tests 28 doCheck = false; 29 pythonImportsCheck = [ "azure.eventgrid" ]; 30 31 meta = with lib; { 32 description = "A fully-managed intelligent event routing service that allows for uniform event consumption using a publish-subscribe model"; 33 homepage = "https://github.com/Azure/azure-sdk-for-python"; 34 license = licenses.mit; 35 maintainers = with maintainers; [ maxwilson ]; 36 }; 37}