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