2019-05-31 07:00:00 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi
|
|
|
|
, Babel, decorator, requests, requests_oauthlib, oauthlib, urllib3, six, click, markdown, pyyaml
|
|
|
|
, pytestrunner, coverage, flake8, mock, pytest, pytestcov, tox
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "apprise";
|
2019-06-17 16:45:18 +01:00
|
|
|
version = "0.7.8";
|
2019-05-31 07:00:00 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-06-17 16:45:18 +01:00
|
|
|
sha256 = "15xv7lhivjhgsaw5j30w1fkk8y33r8nkr2hwp8z1jmsxhdv9l03y";
|
2019-05-31 07:00:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ Babel ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
decorator requests requests_oauthlib oauthlib urllib3 six click markdown pyyaml
|
|
|
|
];
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
pytestrunner coverage flake8 mock pytest pytestcov tox
|
|
|
|
];
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|