depot/third_party/nixpkgs/pkgs/development/python-modules/apprise/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

86 lines
1.6 KiB
Nix

{
lib,
babel,
buildPythonPackage,
click,
cryptography,
fetchPypi,
gntp,
installShellFiles,
markdown,
paho-mqtt,
pytest-mock,
pytest-xdist,
pytestCheckHook,
pythonOlder,
pyyaml,
requests,
requests-oauthlib,
setuptools,
}:
buildPythonPackage rec {
pname = "apprise";
version = "1.8.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-CKIP5yZyt+kPeWnVuHnWV8Li2zhaiowQ9Uy6VlvyN/I=";
};
nativeBuildInputs = [ installShellFiles ];
build-system = [
babel
setuptools
];
dependencies = [
click
cryptography
markdown
pyyaml
requests
requests-oauthlib
];
nativeCheckInputs = [
gntp
paho-mqtt
pytest-mock
pytest-xdist
pytestCheckHook
];
disabledTests = [
"test_apprise_cli_nux_env"
# Nondeterministic. Fails with `assert 0 == 1`
"test_notify_emoji_general"
"test_plugin_mqtt_general"
# Nondeterministic. Fails with `AssertionError`
"test_plugin_xbmc_kodi_urls"
];
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; [ getchoo ];
mainProgram = "apprise";
};
}