nixpkgs/pkgs/development/python-modules/apprise/default.nix

32 lines
813 B
Nix
Raw Normal View History

2019-05-31 07:00:00 +01:00
{ lib, buildPythonPackage, fetchPypi
, Babel, requests, requests_oauthlib, six, click, markdown, pyyaml
2019-05-31 07:00:00 +01:00
, pytestrunner, coverage, flake8, mock, pytest, pytestcov, tox
}:
buildPythonPackage rec {
pname = "apprise";
2019-10-16 10:43:02 +01:00
version = "0.8.1";
2019-05-31 07:00:00 +01:00
src = fetchPypi {
inherit pname version;
2019-10-16 10:43:02 +01:00
sha256 = "7a26fa03c4b83f03f17e8f8fc0b94d5502a12dc2e39b48e93a0ab0fd93151a95";
2019-05-31 07:00:00 +01:00
};
nativeBuildInputs = [ Babel ];
propagatedBuildInputs = [
requests requests_oauthlib six click markdown pyyaml
2019-05-31 07:00:00 +01:00
];
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 ];
};
}