depot/third_party/nixpkgs/pkgs/development/python-modules/apprise/default.nix
Default email ae1b531433 Project import generated by Copybara.
GitOrigin-RevId: 1dc37370c489b610f8b91d7fdd40633163ffbafd
2020-10-27 01:29:36 +01:00

31 lines
845 B
Nix

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