Unverified Commit 5ff3d893 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python310Packages.desktop-notifier: add changelog to meta

- update disabled
parent 5df4f77b
Loading
Loading
Loading
Loading
+9 −4
Original line number Diff line number Diff line
@@ -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;