1{ lib, buildPythonPackage, fetchPypi 2, requests }: 3 4buildPythonPackage rec { 5 pname = "pyfttt"; 6 version = "0.3.2"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "10iq7c9c832ssl2xrvf62xf7znfvqzax6sq8ppsibq6wpb8dlnj5"; 11 }; 12 13 propagatedBuildInputs = [ requests ]; 14 15 # tests need a server to run against 16 doCheck = false; 17 18 meta = with lib; { 19 description = "Package for sending events to the IFTTT Webhooks Channel"; 20 homepage = "https://github.com/briandconnelly/pyfttt"; 21 maintainers = with maintainers; [ peterhoeg ]; 22 license = licenses.bsd2; 23 }; 24}