Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / pyfttt / default.nix
blobc8b52fce409ad594ef18c39496f5435e1fe2fe60
1 { lib, buildPythonPackage, fetchPypi
2 , requests }:
4 buildPythonPackage rec {
5   pname = "pyfttt";
6   version = "0.3.2";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "10iq7c9c832ssl2xrvf62xf7znfvqzax6sq8ppsibq6wpb8dlnj5";
11   };
13   propagatedBuildInputs = [ requests ];
15   # tests need a server to run against
16   doCheck = false;
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   };