depot/third_party/nixpkgs/pkgs/development/python-modules/apprise/default.nix
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

79 lines
1.4 KiB
Nix

{ lib
, babel
, buildPythonPackage
, click
, cryptography
, fetchPypi
, gntp
, installShellFiles
, markdown
, paho-mqtt
, pytest-mock
, pytest-xdist
, pytestCheckHook
, pythonOlder
, pyyaml
, requests
, requests-oauthlib
}:
buildPythonPackage rec {
pname = "apprise";
version = "1.5.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-PFgRQQd6EBeQ7eDKsW+ig60DKpsvl9xtNWX7LZGBP9c=";
};
nativeBuildInputs = [
installShellFiles
];
propagatedBuildInputs = [
click
cryptography
markdown
pyyaml
requests
requests-oauthlib
];
nativeCheckInputs = [
babel
gntp
paho-mqtt
pytest-mock
pytest-xdist
pytestCheckHook
];
disabledTests = [
"test_apprise_cli_nux_env"
"test_plugin_mqtt_general"
];
disabledTestPaths = [
# AttributeError: module 'apprise.plugins' has no attribute 'NotifyBulkSMS'
"test/test_plugin_bulksms.py"
];
postInstall = ''
installManPage packaging/man/apprise.1
'';
pythonImportsCheck = [
"apprise"
];
meta = with lib; {
description = "Push Notifications that work with just about every platform";
homepage = "https://github.com/caronc/apprise";
changelog = "https://github.com/caronc/apprise/releases/tag/v${version}";
license = licenses.bsd3;
maintainers = with maintainers; [ marsam ];
};
}