2012-12-22 04:17:22 +04:00
|
|
|
/*
|
2013-07-27 14:06:45 +04:00
|
|
|
test for example like this
|
2015-11-18 20:31:01 +03:00
|
|
|
$ hydra-eval-jobs pkgs/top-level/release-python.nix
|
2012-12-22 04:17:22 +04:00
|
|
|
*/
|
2013-07-27 14:06:45 +04:00
|
|
|
|
2018-07-21 03:44:44 +03:00
|
|
|
{ # The platforms for which we build Nixpkgs.
|
2015-11-19 11:59:56 +03:00
|
|
|
supportedSystems ? [ "x86_64-linux" ]
|
2020-09-11 19:20:35 +03:00
|
|
|
, # Attributes passed to nixpkgs. Don't build packages marked as unfree.
|
|
|
|
nixpkgsArgs ? { config = { allowUnfree = false; inHydra = true; }; }
|
2013-07-27 14:06:45 +04:00
|
|
|
}:
|
|
|
|
|
2020-09-11 19:20:35 +03:00
|
|
|
with import ./release-lib.nix {inherit supportedSystems nixpkgsArgs; };
|
2017-03-24 02:18:43 +03:00
|
|
|
with lib;
|
2012-12-22 04:17:22 +04:00
|
|
|
|
2015-11-19 18:39:34 +03: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))
|