python3Packages.low-index: add update script

The default `nix-update-script { }` does not work.
This commit is contained in:
Alex Epelde
2026-06-13 08:57:23 -04:00
parent 3a663bc9f6
commit 2a73bf3e84
@@ -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}";