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