Merge pull request #202350 from r-ryantm/auto-update/python310Packages.desktop-notifier

python310Packages.desktop-notifier: 3.4.1 -> 3.4.2
This commit is contained in:
Mario Rodas 2022-11-29 20:21:51 -05:00 committed by GitHub
commit bd85a70bf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,15 +11,16 @@
buildPythonPackage rec {
pname = "desktop-notifier";
version = "3.4.1";
version = "3.4.2";
format = "pyproject";
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "SamSchott";
repo = pname;
rev = "refs/tags/v${version}";
sha256 = "sha256-cqPLnahs3fT6AfQQkS5azh4/cHzaexytg78RsJG5c6U=";
hash = "sha256-OujBpq3SBDKw9Jgb9MD200Rp0fD0OJRw90flxS22I2s=";
};
nativeBuildInputs = [
@ -36,11 +37,15 @@ buildPythonPackage rec {
# no tests available, do the imports check instead
doCheck = false;
pythonImportsCheck = [ "desktop_notifier" ];
pythonImportsCheck = [
"desktop_notifier"
];
meta = with lib; {
description = "Python library for cross-platform desktop notifications";
homepage = "https://github.com/samschott/desktop-notifier";
description = "A Python library for cross-platform desktop notifications";
changelog = "https://github.com/samschott/desktop-notifier/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ sfrijters ];
platforms = platforms.linux;