nixpkgs/pkgs/development/python-modules/apprise/default.nix
R. RyanTM f1688df276
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
2019-09-27 22:09:01 -07:00

32 lines
801 B
Nix

{ 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.0";
src = fetchPypi {
inherit pname version;
sha256 = "02apbzckj158995k9ls0gr1m9hfk7nw3ck0bp7k41srl5wdys72i";
};
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 ];
};
}