python3Packages.low-index: 1.2.1 -> 1.3 (#531372)

This commit is contained in:
Yohann Boniface
2026-06-14 23:37:42 +00:00
committed by GitHub
@@ -4,18 +4,19 @@
buildPythonPackage,
fetchFromGitHub,
setuptools,
nix-update-script,
}:
buildPythonPackage rec {
pname = "low-index";
version = "1.2.1";
version = "1.3";
pyproject = true;
src = fetchFromGitHub {
owner = "3-manifolds";
repo = "low_index";
tag = "v${version}_as_released";
hash = "sha256-T8hzC9ulikQ1pUdbXgjuKAX5oMJEycPvXWv74rCkQGY=";
hash = "sha256-m3p05bqu70pMOsb9drW1B6+N893eBSZBFTNNS23OY6w=";
};
build-system = [ setuptools ];
@@ -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}";