···9 supportedSystems ? [ "x86_64-linux" ]
10}:
1112+with import ../../lib;
13with import ./release-lib.nix {inherit supportedSystems; };
1415+let
16+ packagePython = mapAttrs (name: value:
17+ let res = builtins.tryEval (
18+ if isDerivation value then
19+ value.meta.isBuildPythonPackage or []
20+ else if value.recurseForDerivations or false || value.recurseForRelease or false then
21+ packagePython value
22+ else
23+ []);
24+ in if res.success then res.value else []
25+ );
26+in (mapTestOn (packagePython pkgs))