14 buildPythonPackage rec {
15 pname = "pushbullet-py";
20 inherit pname version;
21 sha256 = "917883e1af4a0c979ce46076b391e0243eb8fe0a81c086544bcfa10f53e5ae64";
24 nativeBuildInputs = [ setuptools ];
26 propagatedBuildInputs = [
34 export PUSHBULLET_API_KEY=""
37 nativeCheckInputs = [ pytestCheckHook ];
45 ++ lib.optionals (pythonAtLeast "3.12") [
46 # AttributeError: 'called_once_with' is not a valid assertion. Use a spec for the mock if 'called_once_with' is meant to be an attribute.. Did you mean: 'assert_called_once_with'?
52 description = "Simple python client for pushbullet.com";
53 homepage = "https://github.com/randomchars/pushbullet.py";
54 license = licenses.mit;