nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

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

+6 -1
+6 -1
pkgs/development/python-modules/yapsy/default.nix
··· 4 4 fetchFromGitHub, 5 5 setuptools, 6 6 pytestCheckHook, 7 + unstableGitUpdater, 7 8 }: 8 9 9 10 buildPythonPackage rec { 10 11 pname = "yapsy"; 11 - version = "1.12.2-unstable-2023-03-29"; 12 + version = "1.12.2-unstable-2023-03-28"; 12 13 pyproject = true; 13 14 14 15 src = fetchFromGitHub { ··· 26 25 nativeCheckInputs = [ pytestCheckHook ]; 27 26 28 27 pythonImportsCheck = [ "yapsy" ]; 28 + 29 + passthru.updateScript = unstableGitUpdater { 30 + tagPrefix = "release_Yapsy-"; 31 + }; 29 32 30 33 meta = with lib; { 31 34 homepage = "https://yapsy.sourceforge.net/";