autosuspend: 7.1.0 -> 7.2.0 (#388266)

Co-authored-by: bzizou <Bruno.Bzeznik@univ-grenoble-alpes.fr>
This commit is contained in:
nixpkgs-merge-bot[bot]
2025-03-10 10:34:48 +00:00
committed by GitHub
co-authored by bzizou
+3 -3
View File
@@ -7,7 +7,7 @@
python3.pkgs.buildPythonApplication rec {
pname = "autosuspend";
version = "7.1.0";
version = "7.2.0";
pyproject = true;
disabled = python3.pythonOlder "3.10";
@@ -16,7 +16,7 @@ python3.pkgs.buildPythonApplication rec {
owner = "languitar";
repo = pname;
tag = "v${version}";
hash = "sha256-Sug42L4D9lgtc7AWIOcgC+e9WCHfmqB4O1Gez/sR6jE=";
hash = "sha256-of2b5K4ccONPGZfUwEIoFs86xLM2aLCV8tVGxVqykiQ=";
};
build-system = with python3.pkgs; [
@@ -60,7 +60,7 @@ python3.pkgs.buildPythonApplication rec {
meta = with lib; {
description = "Daemon to automatically suspend and wake up a system";
homepage = "https://autosuspend.readthedocs.io";
changelog = "https://github.com/languitar/autosuspend/releases/tag/v${version}";
changelog = "https://github.com/languitar/autosuspend/releases/tag/${src.tag}";
license = licenses.gpl2Only;
maintainers = with maintainers; [
bzizou