Merge pull request #108758 from marsam/update-apprise
pythonPackages.apprise: 0.8.9 -> 0.9.0
This commit is contained in:
@@ -1,27 +1,33 @@
|
|||||||
{ lib, buildPythonPackage, fetchPypi
|
{ lib, buildPythonPackage, fetchPypi, installShellFiles
|
||||||
, Babel, requests, requests_oauthlib, six, click, markdown, pyyaml
|
, Babel, requests, requests_oauthlib, six, click, markdown, pyyaml
|
||||||
, pytestrunner, coverage, flake8, mock, pytest, pytestcov, tox, gntp, sleekxmpp
|
, pytestrunner, coverage, flake8, mock, pytestCheckHook, pytestcov, tox, gntp, sleekxmpp
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "apprise";
|
pname = "apprise";
|
||||||
version = "0.8.9";
|
version = "0.9.0";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "024db00c6a80dbc8c9038b2de211c9fd32963046612882f3f54ad78930f3e0f7";
|
sha256 = "bab3563bc1e0c64938c4c7700112797bd99f20eb5d4a3e6038338bc8f060e153";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ Babel ];
|
nativeBuildInputs = [ Babel installShellFiles ];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
requests requests_oauthlib six click markdown pyyaml
|
requests requests_oauthlib six click markdown pyyaml
|
||||||
];
|
];
|
||||||
|
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
pytestrunner coverage flake8 mock pytest pytestcov tox gntp sleekxmpp
|
pytestrunner coverage flake8 mock pytestCheckHook pytestcov tox gntp sleekxmpp
|
||||||
];
|
];
|
||||||
|
|
||||||
|
disabledTests = [ "test_apprise_cli_nux_env" ];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
installManPage packaging/man/apprise.1
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/caronc/apprise";
|
homepage = "https://github.com/caronc/apprise";
|
||||||
description = "Push Notifications that work with just about every platform!";
|
description = "Push Notifications that work with just about every platform!";
|
||||||
|
|||||||
@@ -1412,6 +1412,8 @@ in
|
|||||||
novacomd = callPackage ../development/mobile/webos/novacomd.nix { };
|
novacomd = callPackage ../development/mobile/webos/novacomd.nix { };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
apprise = with python3Packages; toPythonApplication apprise;
|
||||||
|
|
||||||
aria2 = callPackage ../tools/networking/aria2 {
|
aria2 = callPackage ../tools/networking/aria2 {
|
||||||
inherit (darwin.apple_sdk.frameworks) Security;
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
inherit (python3Packages) sphinx;
|
inherit (python3Packages) sphinx;
|
||||||
|
|||||||
Reference in New Issue
Block a user