From 6010a7a6a92dbd15004b4c39ffad869f4295d2ee Mon Sep 17 00:00:00 2001 From: Michael Daniels Date: Tue, 23 Sep 2025 20:34:19 -0400 Subject: [PATCH] python3Packages.yapsy: 1.12.2-unstable-2023-03-29 -> 1.12.2-unstable-2023-03-28 Actually the same version as before, it just uses the committer's time zone for consistency with the scripts. Speaking of scripts, I set passthru.updateScript. This should stop spurious r-ryantm PRs. Closes: #436561 --- pkgs/development/python-modules/yapsy/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/yapsy/default.nix b/pkgs/development/python-modules/yapsy/default.nix index 256d421f918f..ba3818351bab 100644 --- a/pkgs/development/python-modules/yapsy/default.nix +++ b/pkgs/development/python-modules/yapsy/default.nix @@ -4,11 +4,12 @@ fetchFromGitHub, setuptools, pytestCheckHook, + unstableGitUpdater, }: buildPythonPackage rec { pname = "yapsy"; - version = "1.12.2-unstable-2023-03-29"; + version = "1.12.2-unstable-2023-03-28"; pyproject = true; src = fetchFromGitHub { @@ -26,6 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "yapsy" ]; + passthru.updateScript = unstableGitUpdater { + tagPrefix = "release_Yapsy-"; + }; + meta = with lib; { homepage = "https://yapsy.sourceforge.net/"; description = "Yet another plugin system";