autosuspend: 7.2.0 -> 8.0.0

Diff: https://github.com/languitar/autosuspend/compare/v7.2.0...v8.0.0

Release: https://github.com/languitar/autosuspend/releases/tag/v8.0.0

authored by R. Ryantm and committed by Anthony Roussel 55d806ce 37a4fc0b

+7 -9
+7 -9
pkgs/by-name/au/autosuspend/package.nix
··· 7 8 python3.pkgs.buildPythonApplication rec { 9 pname = "autosuspend"; 10 - version = "7.2.0"; 11 pyproject = true; 12 13 disabled = python3.pythonOlder "3.10"; ··· 16 owner = "languitar"; 17 repo = "autosuspend"; 18 tag = "v${version}"; 19 - hash = "sha256-of2b5K4ccONPGZfUwEIoFs86xLM2aLCV8tVGxVqykiQ="; 20 }; 21 22 build-system = with python3.pkgs; [ ··· 32 portalocker 33 psutil 34 python-dateutil 35 - pytz 36 requests 37 requests-file 38 tzlocal 39 ]; 40 ··· 55 "test_multiple_sessions" 56 ]; 57 58 - doCheck = true; 59 - 60 - meta = with lib; { 61 description = "Daemon to automatically suspend and wake up a system"; 62 homepage = "https://autosuspend.readthedocs.io"; 63 changelog = "https://github.com/languitar/autosuspend/releases/tag/${src.tag}"; 64 - license = licenses.gpl2Only; 65 - maintainers = with maintainers; [ 66 bzizou 67 anthonyroussel 68 ]; 69 mainProgram = "autosuspend"; 70 - platforms = platforms.linux; 71 }; 72 }
··· 7 8 python3.pkgs.buildPythonApplication rec { 9 pname = "autosuspend"; 10 + version = "8.0.0"; 11 pyproject = true; 12 13 disabled = python3.pythonOlder "3.10"; ··· 16 owner = "languitar"; 17 repo = "autosuspend"; 18 tag = "v${version}"; 19 + hash = "sha256-ikFZTSYWjl0QGvVAlcMVANCTwcxWN5fkrcK4iQ/QFok="; 20 }; 21 22 build-system = with python3.pkgs; [ ··· 32 portalocker 33 psutil 34 python-dateutil 35 requests 36 requests-file 37 + tzdata 38 tzlocal 39 ]; 40 ··· 55 "test_multiple_sessions" 56 ]; 57 58 + meta = { 59 description = "Daemon to automatically suspend and wake up a system"; 60 homepage = "https://autosuspend.readthedocs.io"; 61 changelog = "https://github.com/languitar/autosuspend/releases/tag/${src.tag}"; 62 + license = lib.licenses.gpl2Only; 63 + maintainers = with lib.maintainers; [ 64 bzizou 65 anthonyroussel 66 ]; 67 mainProgram = "autosuspend"; 68 + platforms = lib.platforms.linux; 69 }; 70 }