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
|
|
|
|
|
|
|
{ nixpkgs ? { outPath = (import ./all-packages.nix {}).lib.cleanSource ../..; revCount = 1234; shortRev = "abcdef"; }
|
|
|
|
, officialRelease ? false
|
|
|
|
, # 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; };
|
2012-12-22 01:17:22 +01:00
|
|
|
|
2015-11-18 18:31:01 +01:00
|
|
|
(mapTestOn {
|
|
|
|
pypyPackages = packagePlatforms pkgs.pypyPackages;
|
|
|
|
pythonPackages = packagePlatforms pkgs.pythonPackages;
|
|
|
|
python33Packages = packagePlatforms pkgs.python33Packages;
|
2015-11-19 09:59:56 +01:00
|
|
|
python34Packages = packagePlatforms pkgs.python34Packages;
|
|
|
|
python35Packages = packagePlatforms pkgs.python35Packages;
|
2015-11-18 18:31:01 +01:00
|
|
|
})
|