python37Packages.apprise: 0.7.9 -> 0.8.0

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-apprise/versions
This commit is contained in:
R. RyanTM 2019-09-27 22:09:01 -07:00 committed by Mario Rodas
parent 15f9bdb648
commit f1688df276
No known key found for this signature in database
GPG Key ID: 4C4BEFD7B18DC5E8

View File

@ -1,21 +1,21 @@
{ lib, buildPythonPackage, fetchPypi
, Babel, decorator, requests, requests_oauthlib, six, click, markdown, pyyaml
, Babel, requests, requests_oauthlib, six, click, markdown, pyyaml
, pytestrunner, coverage, flake8, mock, pytest, pytestcov, tox
}:
buildPythonPackage rec {
pname = "apprise";
version = "0.7.9";
version = "0.8.0";
src = fetchPypi {
inherit pname version;
sha256 = "0zqnk255d311ibird08sv0c21fw1r1xhldhyx5lnl3ji1xkv9173";
sha256 = "02apbzckj158995k9ls0gr1m9hfk7nw3ck0bp7k41srl5wdys72i";
};
nativeBuildInputs = [ Babel ];
propagatedBuildInputs = [
decorator requests requests_oauthlib six click markdown pyyaml
requests requests_oauthlib six click markdown pyyaml
];
checkInputs = [