release-python.nix: drop darwin and i686-linux, add py35

This commit is contained in:
Domen Kožar 2015-11-19 09:59:56 +01:00
parent d202585b4c
commit 2ebaf14eba

View File

@ -6,7 +6,7 @@
{ nixpkgs ? { outPath = (import ./all-packages.nix {}).lib.cleanSource ../..; revCount = 1234; shortRev = "abcdef"; } { nixpkgs ? { outPath = (import ./all-packages.nix {}).lib.cleanSource ../..; revCount = 1234; shortRev = "abcdef"; }
, officialRelease ? false , officialRelease ? false
, # The platforms for which we build Nixpkgs. , # The platforms for which we build Nixpkgs.
supportedSystems ? [ "x86_64-linux" "i686-linux" "x86_64-darwin" ] supportedSystems ? [ "x86_64-linux" ]
}: }:
with import ./release-lib.nix {inherit supportedSystems; }; with import ./release-lib.nix {inherit supportedSystems; };
@ -14,6 +14,7 @@ with import ./release-lib.nix {inherit supportedSystems; };
(mapTestOn { (mapTestOn {
pypyPackages = packagePlatforms pkgs.pypyPackages; pypyPackages = packagePlatforms pkgs.pypyPackages;
pythonPackages = packagePlatforms pkgs.pythonPackages; pythonPackages = packagePlatforms pkgs.pythonPackages;
python34Packages = packagePlatforms pkgs.python34Packages;
python33Packages = packagePlatforms pkgs.python33Packages; python33Packages = packagePlatforms pkgs.python33Packages;
python34Packages = packagePlatforms pkgs.python34Packages;
python35Packages = packagePlatforms pkgs.python35Packages;
}) })