pythonPackages.apprise: init at 0.7.7
This commit is contained in:
parent
bb36ba2b21
commit
bd7aafce8d
31
pkgs/development/python-modules/apprise/default.nix
Normal file
31
pkgs/development/python-modules/apprise/default.nix
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
{ 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.7";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "c3c7922f7b80107620f541a6c16435485e7045771b3ecfb998deacee0eb90753";
|
||||||
|
};
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -187,6 +187,8 @@ in {
|
|||||||
|
|
||||||
aplpy = callPackage ../development/python-modules/aplpy { };
|
aplpy = callPackage ../development/python-modules/aplpy { };
|
||||||
|
|
||||||
|
apprise = callPackage ../development/python-modules/apprise { };
|
||||||
|
|
||||||
argon2_cffi = callPackage ../development/python-modules/argon2_cffi { };
|
argon2_cffi = callPackage ../development/python-modules/argon2_cffi { };
|
||||||
|
|
||||||
asana = callPackage ../development/python-modules/asana { };
|
asana = callPackage ../development/python-modules/asana { };
|
||||||
|
Loading…
Reference in New Issue
Block a user