Merge pull request #208218 from fabaff/apprise-bump

python310Packages.apprise: 1.2.0 -> 1.2.1
This commit is contained in:
Fabian Affolter 2022-12-29 21:39:12 +01:00 committed by GitHub
commit 0cf1281c75
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,14 +19,14 @@
buildPythonPackage rec {
pname = "apprise";
version = "1.2.0";
version = "1.2.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-bjGvoY9HRS6szVb7fug9kkUsU00V85JAftGg48RlJEs=";
hash = "sha256-Z+DCJ+7O4mAACYDbv4uh5e69vklPRzCAgpfJ5kXANXk=";
};
nativeBuildInputs = [
@ -72,6 +72,7 @@ buildPythonPackage rec {
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.mit;
maintainers = with maintainers; [ marsam ];
};