2012-12-22 01:17:22 +01:00
|
|
|
/*
|
2013-07-27 12:06:45 +02:00
|
|
|
test for example like this
|
2015-11-18 18:31:01 +01:00
|
|
|
$ hydra-eval-jobs pkgs/top-level/release-python.nix
|
2012-12-22 01:17:22 +01:00
|
|
|
*/
|
2013-07-27 12:06:45 +02:00
|
|
|
|
2018-07-21 02:44:44 +02:00
|
|
|
{ # The platforms for which we build Nixpkgs.
|
2015-11-19 09:59:56 +01:00
|
|
|
supportedSystems ? [ "x86_64-linux" ]
|
2013-07-27 12:06:45 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
with import ./release-lib.nix {inherit supportedSystems; };
|
2017-03-24 00:18:43 +01:00
|
|
|
with lib;
|
2012-12-22 01:17:22 +01:00
|
|
|
|
2015-11-19 16:39:34 +01: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))
|