Skip to content

Commit 9cb08cc

Browse files
committed
nix: extend switch to explicit pname/version
1 parent 0fead5e commit 9cb08cc

File tree

1 file changed

+1
-1
lines changed
  • repology/parsers/parsers

1 file changed

+1
-1
lines changed

repology/parsers/parsers/nix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ def iter_parse(self, path: str, factory: PackageFactory) -> Iterable[PackageMake
188188
continue
189189
elif match.group(1).endswith('-unstable') and version.startswith('unstable-') and match.group(1)[:-9] == pname and match.group(2) == version[9:]:
190190
pass
191-
elif key.startswith('sbclPackages.') or re.match('lua([0-9]+|jit)?Packages|rPackages|python[0-9]+Packages', key):
191+
elif key.startswith('sbclPackages.') or re.match('lua([0-9]+|jit)?Packages|rPackages|python[0-9]+Packages|vimPlugins', key):
192192
pass
193193
else:
194194
pname = match.group(1)

0 commit comments

Comments
 (0)