lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

pythonPackages.pushbullet: 0.10.0 -> 0.11.0 and fix build

+10 -3
+10 -3
pkgs/development/python-modules/pushbullet/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi 2 - , requests, websocket_client, python_magic }: 2 + , requests, websocket_client, python_magic 3 + , pytest, mock }: 3 4 4 5 buildPythonPackage rec { 5 6 pname = "pushbullet.py"; 6 - version = "0.10.0"; 7 + version = "0.11.0"; 7 8 8 9 src = fetchPypi { 9 10 inherit pname version; 10 - sha256 = "537d3132e1dbc91e31ade4cccf4c7def6f9d48e904a67f341d35b8a54a9be74d"; 11 + sha256 = "aa9dc7bb46e083e3497d46241154f12944a8f540e29d150330ca94db0b453b8d"; 11 12 }; 12 13 13 14 propagatedBuildInputs = [ requests websocket_client python_magic ]; 15 + 16 + checkInputs = [ pytest mock ]; 17 + 18 + checkPhase = '' 19 + PUSHBULLET_API_KEY="" py.test -k "not test_e2e and not test_auth" 20 + ''; 14 21 15 22 meta = with lib; { 16 23 description = "A simple python client for pushbullet.com";