tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
release-python.nix: drop darwin and i686-linux, add py35
Domen Kožar
10 years ago
2ebaf14e
d202585b
+3
-2
1 changed file
expand all
collapse all
unified
split
pkgs
top-level
release-python.nix
+3
-2
pkgs/top-level/release-python.nix
reviewed
···
6
6
{ nixpkgs ? { outPath = (import ./all-packages.nix {}).lib.cleanSource ../..; revCount = 1234; shortRev = "abcdef"; }
7
7
, officialRelease ? false
8
8
, # The platforms for which we build Nixpkgs.
9
9
-
supportedSystems ? [ "x86_64-linux" "i686-linux" "x86_64-darwin" ]
9
9
+
supportedSystems ? [ "x86_64-linux" ]
10
10
}:
11
11
12
12
with import ./release-lib.nix {inherit supportedSystems; };
···
14
14
(mapTestOn {
15
15
pypyPackages = packagePlatforms pkgs.pypyPackages;
16
16
pythonPackages = packagePlatforms pkgs.pythonPackages;
17
17
+
python33Packages = packagePlatforms pkgs.python33Packages;
17
18
python34Packages = packagePlatforms pkgs.python34Packages;
18
18
-
python33Packages = packagePlatforms pkgs.python33Packages;
19
19
+
python35Packages = packagePlatforms pkgs.python35Packages;
19
20
})