2012-12-22 00:17:22 +00:00
|
|
|
/*
|
2013-07-27 11:06:45 +01:00
|
|
|
test for example like this
|
2015-11-18 17:31:01 +00:00
|
|
|
$ hydra-eval-jobs pkgs/top-level/release-python.nix
|
2012-12-22 00:17:22 +00:00
|
|
|
*/
|
2013-07-27 11:06:45 +01:00
|
|
|
|
2018-07-21 01:44:44 +01:00
|
|
|
{ # The platforms for which we build Nixpkgs.
|
2015-11-19 08:59:56 +00:00
|
|
|
supportedSystems ? [ "x86_64-linux" ]
|
2013-07-27 11:06:45 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
with import ./release-lib.nix {inherit supportedSystems; };
|
2017-03-23 23:18:43 +00:00
|
|
|
with lib;
|
2012-12-22 00:17:22 +00:00
|
|
|
|
2015-11-19 15:39:34 +00:00
|
|
|
let
|
|
|
|
packagePython = mapAttrs (name: value:
|
|
|
|
let res = builtins.tryEval (
|
|
|
|
if isDerivation value then
|
|
|
|
value.meta.isBuildPythonPackage or []
|
|
|
|
else if value.recurseForDerivations or false || value.recurseForRelease or false then
|
|
|
|
packagePython value
|
|
|
|
else
|
|
|
|
[]);
|
|
|
|
in if res.success then res.value else []
|
|
|
|
);
|
|
|
|
in (mapTestOn (packagePython pkgs))
|