1 { lib, buildPythonPackage, fetchPypi
2 , requests, websocket_client, python_magic
5 buildPythonPackage rec {
6 pname = "pushbullet.py";
10 inherit pname version;
11 sha256 = "917883e1af4a0c979ce46076b391e0243eb8fe0a81c086544bcfa10f53e5ae64";
14 propagatedBuildInputs = [ requests websocket_client python_magic ];
16 checkInputs = [ pytest mock ];
19 PUSHBULLET_API_KEY="" py.test -k "not test_e2e and not test_auth"
23 description = "A simple python client for pushbullet.com";
24 homepage = "https://github.com/randomchars/pushbullet.py";
25 license = licenses.mit;