summary refs log tree commit diff
path: root/pkgs/development/python-modules/apprise
diff options
context:
space:
mode:
authorJean-François Roche <jfroche@affinitic.be>2020-10-18 22:18:30 +0200
committerJean-François Roche <jfroche@affinitic.be>2020-10-18 22:23:12 +0200
commit7dd73b3a4f05949dc3f4254649a080e28af3a3c2 (patch)
tree71e5eff3535793e13f40de70518b91b67f7e197b /pkgs/development/python-modules/apprise
parentaf876357768dc8749fa7e027419576f3296b18fc (diff)
downloadnixpkgs-7dd73b3a4f05949dc3f4254649a080e28af3a3c2.tar
nixpkgs-7dd73b3a4f05949dc3f4254649a080e28af3a3c2.tar.gz
nixpkgs-7dd73b3a4f05949dc3f4254649a080e28af3a3c2.tar.bz2
nixpkgs-7dd73b3a4f05949dc3f4254649a080e28af3a3c2.tar.lz
nixpkgs-7dd73b3a4f05949dc3f4254649a080e28af3a3c2.tar.xz
nixpkgs-7dd73b3a4f05949dc3f4254649a080e28af3a3c2.tar.zst
nixpkgs-7dd73b3a4f05949dc3f4254649a080e28af3a3c2.zip
python{2,3}Packages.apprise: fix missing dependencies
Add the missing dependencies on gntp
Diffstat (limited to 'pkgs/development/python-modules/apprise')
-rw-r--r--pkgs/development/python-modules/apprise/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/apprise/default.nix b/pkgs/development/python-modules/apprise/default.nix
index 1c140266b9e..4dac5602b37 100644
--- a/pkgs/development/python-modules/apprise/default.nix
+++ b/pkgs/development/python-modules/apprise/default.nix
@@ -1,6 +1,6 @@
 { lib, buildPythonPackage, fetchPypi
 , Babel, requests, requests_oauthlib, six, click, markdown, pyyaml
-, pytestrunner, coverage, flake8, mock, pytest, pytestcov, tox
+, pytestrunner, coverage, flake8, mock, pytest, pytestcov, tox, gntp, sleekxmpp
 }:
 
 buildPythonPackage rec {
@@ -19,7 +19,7 @@ buildPythonPackage rec {
   ];
 
   checkInputs = [
-    pytestrunner coverage flake8 mock pytest pytestcov tox
+    pytestrunner coverage flake8 mock pytest pytestcov tox gntp sleekxmpp
   ];
 
   meta = with lib; {