Merge pull request #209814 from r-ryantm/auto-update/python310Packages.notify-py

python310Packages.notify-py: 0.3.38 -> 0.3.39
This commit is contained in:
Fabian Affolter 2023-01-09 10:27:04 +01:00 committed by GitHub
commit 958f033b48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,17 +18,16 @@
buildPythonPackage rec {
pname = "notify-py";
version = "0.3.38";
version = "0.3.39";
format = "pyproject";
disabled = pythonOlder "3.6";
format = "pyproject";
src = fetchFromGitHub {
owner = "ms7m";
repo = pname;
rev = "v${version}";
hash = "sha256-wlA7a10f4PYP3dYYwZqMULQ5FMCXpOUOTxXzEEVZCsI=";
rev = "refs/tags/v${version}";
hash = "sha256-QIK5MCCOsD8SStoh7TRw+l9k28SjChwV2J/T7gMKnAs=";
};
patches = lib.optionals stdenv.isLinux [
@ -89,6 +88,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Cross-platform desktop notification library for Python";
homepage = "https://github.com/ms7m/notify-py";
changelog = "https://github.com/ms7m/notify-py/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ austinbutler dotlambda ];
};