nixpkgs/pkgs/development/python-modules/apprise/default.nix
R. RyanTM 80e8c6104a python37Packages.apprise: 0.7.7 -> 0.7.8
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-06-17 08:45:18 -07:00

32 lines
858 B
Nix

{ 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";
version = "0.7.8";
src = fetchPypi {
inherit pname version;
sha256 = "15xv7lhivjhgsaw5j30w1fkk8y33r8nkr2hwp8z1jmsxhdv9l03y";
};
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 ];
};
}