Merge #100446: python*Packages.apprise: fix dependencies
This commit is contained in:
commit
ed217bcc35
|
@ -3945,6 +3945,16 @@
|
||||||
githubId = 2736480;
|
githubId = 2736480;
|
||||||
name = "Johannes Frankenau";
|
name = "Johannes Frankenau";
|
||||||
};
|
};
|
||||||
|
jfroche = {
|
||||||
|
name = "Jean-François Roche";
|
||||||
|
email = "jfroche@pyxel.be";
|
||||||
|
github = "jfroche";
|
||||||
|
githubId = 207369;
|
||||||
|
keys = [{
|
||||||
|
longkeyid = "dsa1024/0xD1D09DE169EA19A0";
|
||||||
|
fingerprint = "7EB1 C02A B62B B464 6D7C E4AE D1D0 9DE1 69EA 19A0";
|
||||||
|
}];
|
||||||
|
};
|
||||||
jgeerds = {
|
jgeerds = {
|
||||||
email = "jascha@geerds.org";
|
email = "jascha@geerds.org";
|
||||||
github = "jgeerds";
|
github = "jgeerds";
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi
|
{ lib, buildPythonPackage, fetchPypi
|
||||||
, Babel, requests, requests_oauthlib, six, click, markdown, pyyaml
|
, 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 {
|
buildPythonPackage rec {
|
||||||
|
@ -19,7 +19,7 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
pytestrunner coverage flake8 mock pytest pytestcov tox
|
pytestrunner coverage flake8 mock pytest pytestcov tox gntp sleekxmpp
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
|
@ -0,0 +1,23 @@
|
||||||
|
{ lib, buildPythonPackage, fetchPypi, nose }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "gntp";
|
||||||
|
version = "1.0.3";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1q6scs8lp84v0aph6b5c9jhv51rhq2vmzpdd38db92ybkq0g597l";
|
||||||
|
};
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "gntp" "gntp.notifier" ];
|
||||||
|
|
||||||
|
# requires a growler service to be running
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/kfdm/gntp/";
|
||||||
|
description = "Python library for working with the Growl Notification Transport Protocol";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = [ maintainers.jfroche ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -2397,6 +2397,8 @@ in {
|
||||||
|
|
||||||
gmusicapi = callPackage ../development/python-modules/gmusicapi { };
|
gmusicapi = callPackage ../development/python-modules/gmusicapi { };
|
||||||
|
|
||||||
|
gntp = callPackage ../development/python-modules/gntp { };
|
||||||
|
|
||||||
gnureadline = callPackage ../development/python-modules/gnureadline { };
|
gnureadline = callPackage ../development/python-modules/gnureadline { };
|
||||||
|
|
||||||
gnutls = callPackage ../development/python-modules/gnutls { };
|
gnutls = callPackage ../development/python-modules/gnutls { };
|
||||||
|
|
Loading…
Reference in New Issue