{ lib, buildPythonPackage, fetchPypi , Babel, requests, requests_oauthlib, six, click, markdown, pyyaml , pytestrunner, coverage, flake8, mock, pytest, pytestcov, tox }: buildPythonPackage rec { pname = "apprise"; version = "0.8.6"; src = fetchPypi { inherit pname version; sha256 = "695f9b98b7eb273901d9d28a026a69a028a57ab7d666bdf146ecc215c80b5041"; }; nativeBuildInputs = [ Babel ]; propagatedBuildInputs = [ requests requests_oauthlib 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 ]; }; }