1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 requests,
6}:
7
8buildPythonPackage rec {
9 pname = "notify-events";
10 version = "1.1.3";
11
12 format = "setuptools";
13
14 src = fetchPypi {
15 pname = "notify_events";
16 inherit version;
17 sha256 = "e63ba935c3300ff7f48cba115f7cb4474906e83c2e9b60b95a0881eb949701e7";
18 };
19
20 propagatedBuildInputs = [ requests ];
21
22 # upstream has no tests
23 doCheck = false;
24
25 pythonImportsCheck = [ "notify_events" ];
26
27 meta = {
28 description = "Python client for Notify.Events";
29 homepage = "https://github.com/notify-events/python";
30 license = lib.licenses.mit;
31 maintainers = with lib.maintainers; [ dotlambda ];
32 };
33}