2019-05-31 07:00:00 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi
|
2019-09-28 06:09:01 +01:00
|
|
|
, Babel, requests, requests_oauthlib, six, click, markdown, pyyaml
|
2020-10-18 21:18:30 +01:00
|
|
|
, pytestrunner, coverage, flake8, mock, pytest, pytestcov, tox, gntp, sleekxmpp
|
2019-05-31 07:00:00 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "apprise";
|
2020-10-28 05:17:55 +00:00
|
|
|
version = "0.8.9";
|
2019-05-31 07:00:00 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-10-28 05:17:55 +00:00
|
|
|
sha256 = "024db00c6a80dbc8c9038b2de211c9fd32963046612882f3f54ad78930f3e0f7";
|
2019-05-31 07:00:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ Babel ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
2019-09-28 06:09:01 +01:00
|
|
|
requests requests_oauthlib six click markdown pyyaml
|
2019-05-31 07:00:00 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
checkInputs = [
|
2020-10-18 21:18:30 +01:00
|
|
|
pytestrunner coverage flake8 mock pytest pytestcov tox gntp sleekxmpp
|
2019-05-31 07:00:00 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/caronc/apprise";
|
|
|
|
description = "Push Notifications that work with just about every platform!";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.marsam ];
|
|
|
|
};
|
|
|
|
}
|