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