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