swiftlint: 0.58.0 -> 0.58.2 (#374497)
[NixPkgs.git] / pkgs / development / python-modules / pyfttt / default.nix
blobf31759aedc752e520f45a7b640441bd57d4ce8c5
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   requests,
6 }:
8 buildPythonPackage rec {
9   pname = "pyfttt";
10   version = "0.3.2";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "10iq7c9c832ssl2xrvf62xf7znfvqzax6sq8ppsibq6wpb8dlnj5";
16   };
18   propagatedBuildInputs = [ requests ];
20   # tests need a server to run against
21   doCheck = false;
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   };