2015-09-15 06:46:20 +01:00
|
|
|
{ stdenv, fetchurl
|
|
|
|
, bzip2
|
|
|
|
, gdbm
|
|
|
|
, lzma
|
|
|
|
, ncurses
|
|
|
|
, openssl
|
|
|
|
, readline
|
|
|
|
, sqlite
|
2016-10-14 16:49:51 +01:00
|
|
|
, tcl ? null, tk ? null, libX11 ? null, xproto ? null, x11Support ? false
|
2015-09-15 06:46:20 +01:00
|
|
|
, zlib
|
|
|
|
, callPackage
|
|
|
|
, self
|
2015-10-21 20:24:40 +01:00
|
|
|
, CF, configd
|
2016-12-04 08:51:12 +00:00
|
|
|
# For the Python package set
|
|
|
|
, pkgs, packageOverrides ? (self: super: {})
|
2015-09-15 06:46:20 +01:00
|
|
|
}:
|
|
|
|
|
2016-10-14 14:06:01 +01:00
|
|
|
assert x11Support -> tcl != null
|
|
|
|
&& tk != null
|
|
|
|
&& xproto != null
|
|
|
|
&& libX11 != null;
|
2015-09-15 06:46:20 +01:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
majorVersion = "3.5";
|
2016-09-20 12:01:30 +01:00
|
|
|
minorVersion = "2";
|
|
|
|
minorVersionSuffix = "";
|
2015-09-15 06:46:20 +01:00
|
|
|
pythonVersion = majorVersion;
|
2016-09-20 12:01:30 +01:00
|
|
|
version = "${majorVersion}.${minorVersion}${minorVersionSuffix}";
|
|
|
|
libPrefix = "python${majorVersion}";
|
2016-10-06 16:22:07 +01:00
|
|
|
sitePackages = "lib/${libPrefix}/site-packages";
|
2015-09-15 06:46:20 +01:00
|
|
|
|
|
|
|
buildInputs = filter (p: p != null) [
|
2016-10-14 14:06:01 +01:00
|
|
|
zlib bzip2 lzma gdbm sqlite readline ncurses openssl ]
|
|
|
|
++ optionals x11Support [ tcl tk libX11 xproto ]
|
|
|
|
++ optionals stdenv.isDarwin [ CF configd ];
|
|
|
|
|
|
|
|
in stdenv.mkDerivation {
|
2016-09-20 12:01:30 +01:00
|
|
|
name = "python3-${version}";
|
2015-09-15 06:46:20 +01:00
|
|
|
pythonVersion = majorVersion;
|
|
|
|
inherit majorVersion version;
|
|
|
|
|
2016-05-15 12:38:02 +01:00
|
|
|
inherit buildInputs;
|
2015-10-21 20:24:40 +01:00
|
|
|
|
2015-09-15 06:46:20 +01:00
|
|
|
src = fetchurl {
|
2016-09-20 12:01:30 +01:00
|
|
|
url = "https://www.python.org/ftp/python/${majorVersion}.${minorVersion}/Python-${version}.tar.xz";
|
2016-07-10 17:57:38 +01:00
|
|
|
sha256 = "0h6a5fr7ram2s483lh0pnmc4ncijb8llnpfdxdcl5dxr01hza400";
|
2015-09-15 06:46:20 +01:00
|
|
|
};
|
|
|
|
|
2016-04-26 09:50:48 +01:00
|
|
|
NIX_LDFLAGS = optionalString stdenv.isLinux "-lgcc_s";
|
2015-09-15 06:46:20 +01:00
|
|
|
|
2016-04-26 09:50:48 +01:00
|
|
|
prePatch = optionalString stdenv.isDarwin ''
|
2015-10-21 20:24:40 +01:00
|
|
|
substituteInPlace configure --replace '`/usr/bin/arch`' '"i386"'
|
2016-08-26 22:12:24 +01:00
|
|
|
substituteInPlace configure --replace '-Wl,-stack_size,1000000' ' '
|
2015-10-21 20:24:40 +01:00
|
|
|
'';
|
|
|
|
|
2015-09-15 06:46:20 +01:00
|
|
|
preConfigure = ''
|
|
|
|
for i in /usr /sw /opt /pkg; do # improve purity
|
|
|
|
substituteInPlace ./setup.py --replace $i /no-such-path
|
|
|
|
done
|
|
|
|
${optionalString stdenv.isDarwin ''
|
|
|
|
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -msse2"
|
|
|
|
export MACOSX_DEPLOYMENT_TARGET=10.6
|
|
|
|
''}
|
|
|
|
|
|
|
|
configureFlagsArray=( --enable-shared --with-threads
|
2016-04-26 09:50:48 +01:00
|
|
|
CPPFLAGS="${concatStringsSep " " (map (p: "-I${getDev p}/include") buildInputs)}"
|
|
|
|
LDFLAGS="${concatStringsSep " " (map (p: "-L${getLib p}/lib") buildInputs)}"
|
2015-09-15 06:46:20 +01:00
|
|
|
LIBS="${optionalString (!stdenv.isDarwin) "-lcrypt"} ${optionalString (ncurses != null) "-lncurses"}"
|
|
|
|
)
|
|
|
|
'';
|
|
|
|
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
# needed for some packages, especially packages that backport functionality
|
|
|
|
# to 2.x from 3.x
|
|
|
|
for item in $out/lib/python${majorVersion}/test/*; do
|
|
|
|
if [[ "$item" != */test_support.py* ]]; then
|
|
|
|
rm -rf "$item"
|
|
|
|
else
|
|
|
|
echo $item
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
touch $out/lib/python${majorVersion}/test/__init__.py
|
|
|
|
|
|
|
|
ln -s "$out/include/python${majorVersion}m" "$out/include/python${majorVersion}"
|
|
|
|
paxmark E $out/bin/python${majorVersion}
|
2016-09-20 12:16:26 +01:00
|
|
|
|
|
|
|
# Python on Nix is not manylinux1 compatible. https://github.com/NixOS/nixpkgs/issues/18484
|
|
|
|
echo "manylinux1_compatible=False" >> $out/lib/${libPrefix}/_manylinux.py
|
2016-10-14 18:45:53 +01:00
|
|
|
|
|
|
|
# Use Python3 as default python
|
|
|
|
ln -s "$out/bin/idle3" "$out/bin/idle"
|
|
|
|
ln -s "$out/bin/pip3" "$out/bin/pip"
|
|
|
|
ln -s "$out/bin/pydoc3" "$out/bin/pydoc"
|
|
|
|
ln -s "$out/bin/python3" "$out/bin/python"
|
|
|
|
ln -s "$out/bin/python3-config" "$out/bin/python-config"
|
2016-10-17 21:20:52 +01:00
|
|
|
ln -s "$out/lib/pkgconfig/python3.pc" "$out/lib/pkgconfig/python.pc"
|
2015-09-15 06:46:20 +01:00
|
|
|
'';
|
|
|
|
|
2016-09-01 14:20:49 +01:00
|
|
|
postFixup = ''
|
|
|
|
# Get rid of retained dependencies on -dev packages, and remove
|
|
|
|
# some $TMPDIR references to improve binary reproducibility.
|
2016-10-06 16:22:07 +01:00
|
|
|
for i in $out/lib/python${majorVersion}/_sysconfigdata.py $out/lib/python${majorVersion}/config-${majorVersion}m/Makefile; do
|
2016-09-01 15:01:36 +01:00
|
|
|
sed -i $i -e "s|-I/nix/store/[^ ']*||g" -e "s|-L/nix/store/[^ ']*||g" -e "s|$TMPDIR|/no-such-path|g"
|
2016-09-01 14:20:49 +01:00
|
|
|
done
|
|
|
|
|
|
|
|
# FIXME: should regenerate this.
|
|
|
|
rm $out/lib/python${majorVersion}/__pycache__/_sysconfigdata.cpython*
|
|
|
|
'';
|
|
|
|
|
2016-12-04 08:51:12 +00:00
|
|
|
passthru = let
|
|
|
|
pythonPackages = callPackage ../../../../../top-level/python-packages.nix {python=self; overrides=packageOverrides;};
|
|
|
|
in rec {
|
2016-10-14 14:06:01 +01:00
|
|
|
inherit libPrefix sitePackages x11Support;
|
2016-09-20 12:01:30 +01:00
|
|
|
executable = "${libPrefix}m";
|
2016-07-07 13:05:05 +01:00
|
|
|
buildEnv = callPackage ../../wrapper.nix { python = self; };
|
2016-12-04 08:51:12 +00:00
|
|
|
withPackages = import ../../with-packages.nix { inherit buildEnv pythonPackages;};
|
|
|
|
pkgs = pythonPackages;
|
2015-09-15 06:46:20 +01:00
|
|
|
isPy3 = true;
|
|
|
|
isPy35 = true;
|
|
|
|
interpreter = "${self}/bin/${executable}";
|
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://python.org;
|
|
|
|
description = "A high-level dynamically-typed programming language";
|
|
|
|
longDescription = ''
|
|
|
|
Python is a remarkably powerful dynamic programming language that
|
|
|
|
is used in a wide variety of application domains. Some of its key
|
|
|
|
distinguishing features include: clear, readable syntax; strong
|
|
|
|
introspection capabilities; intuitive object orientation; natural
|
|
|
|
expression of procedural code; full modularity, supporting
|
|
|
|
hierarchical packages; exception-based error handling; and very
|
|
|
|
high level dynamic data types.
|
|
|
|
'';
|
2016-04-26 09:50:48 +01:00
|
|
|
license = licenses.psfl;
|
|
|
|
platforms = with platforms; linux ++ darwin;
|
2016-05-17 12:57:28 +01:00
|
|
|
maintainers = with maintainers; [ chaoflow domenkozar cstrahan ];
|
2015-09-15 06:46:20 +01:00
|
|
|
};
|
|
|
|
}
|