aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/pushbullet/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/development/python-modules/pushbullet/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/python-modules/pushbullet/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/development/python-modules/pushbullet/default.nix b/infra/libkookie/nixpkgs/pkgs/development/python-modules/pushbullet/default.nix
new file mode 100644
index 000000000000..b9c2a84728fa
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/development/python-modules/pushbullet/default.nix
@@ -0,0 +1,27 @@
+{ lib, buildPythonPackage, fetchPypi
+, requests, websocket_client, python_magic
+, pytest, mock }:
+
+buildPythonPackage rec {
+ pname = "pushbullet.py";
+ version = "0.11.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "aa9dc7bb46e083e3497d46241154f12944a8f540e29d150330ca94db0b453b8d";
+ };
+
+ propagatedBuildInputs = [ requests websocket_client python_magic ];
+
+ checkInputs = [ pytest mock ];
+
+ checkPhase = ''
+ PUSHBULLET_API_KEY="" py.test -k "not test_e2e and not test_auth"
+ '';
+
+ meta = with lib; {
+ description = "A simple python client for pushbullet.com";
+ homepage = "https://github.com/randomchars/pushbullet.py";
+ license = licenses.mit;
+ };
+}