mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
python3Packages.low-index: add update script
The default `nix-update-script { }` does not work.
(cherry picked from commit 2a73bf3e84)
This commit is contained in:
parent
0e45d4de99
commit
b0fdea5f99
1 changed files with 8 additions and 0 deletions
|
|
@ -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}";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue