pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / common-updater / http-two-levels-updater.nix
blob77594fc8a112ec2a82459a0a89ea8e2493676fd6
1 { lib
2 , genericUpdater
3 , common-updater-scripts
4 }:
6 { pname ? null
7 , version ? null
8 , attrPath ? null
9 , allowedVersions ? ""
10 , ignoredVersions ? ""
11 , rev-prefix ? ""
12 , odd-unstable ? false
13 , patchlevel-unstable ? false
14 , url ? null
17 genericUpdater {
18   inherit pname version attrPath allowedVersions ignoredVersions rev-prefix odd-unstable patchlevel-unstable;
19   versionLister = "${common-updater-scripts}/bin/list-archive-two-levels-versions ${lib.optionalString (url != null) "--url=${lib.escapeShellArg url}"}";