python3Packages.low-index: add update script

The default `nix-update-script { }` does not work.

(cherry picked from commit 2a73bf3e84)
This commit is contained in:
Alex Epelde 2026-06-13 08:55:01 -04:00 committed by github-actions[bot]
commit b0fdea5f99

View file

@ -4,6 +4,7 @@
buildPythonPackage,
fetchFromGitHub,
setuptools,
nix-update-script,
}:
buildPythonPackage rec {
@ -28,6 +29,13 @@ buildPythonPackage rec {
runHook postCheck
'';
passthru.updateScript = nix-update-script {
extraArgs = [
"--version-regex"
"v(.*)_as_released"
];
};
meta = {
description = "Enumerates low index subgroups of a finitely presented group";
changelog = "https://github.com/3-manifolds/low_index/releases/tag/${src.tag}";