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

Changed files
+6 -1
pkgs
development
python-modules
yapsy
+6 -1
pkgs/development/python-modules/yapsy/default.nix
···
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 {
···
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "yapsy" ];
+
+
passthru.updateScript = unstableGitUpdater {
+
tagPrefix = "release_Yapsy-";
+
};
meta = with lib; {
homepage = "https://yapsy.sourceforge.net/";