python310Packages.desktop-notifier: add changelog to meta

- update disabled
This commit is contained in:
Fabian Affolter 2022-11-22 18:34:26 +01:00 committed by GitHub
parent 5df4f77b34
commit 5ff3d89331
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,13 +13,14 @@ buildPythonPackage rec {
pname = "desktop-notifier";
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-OujBpq3SBDKw9Jgb9MD200Rp0fD0OJRw90flxS22I2s=";
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;