2011-04-19 19:10:15 +01:00
|
|
|
{ stdenv, fetchurl
|
2013-02-16 17:11:32 +00:00
|
|
|
, bzip2
|
2014-01-31 20:05:37 +00:00
|
|
|
, db
|
2013-02-16 17:11:32 +00:00
|
|
|
, gdbm
|
|
|
|
, libX11, xproto
|
2014-03-23 14:48:33 +00:00
|
|
|
, lzma
|
2013-02-16 17:11:32 +00:00
|
|
|
, ncurses
|
|
|
|
, openssl
|
|
|
|
, readline
|
|
|
|
, sqlite
|
|
|
|
, tcl, tk
|
|
|
|
, zlib
|
2014-10-19 18:48:07 +01:00
|
|
|
, callPackage
|
|
|
|
, self
|
2016-05-29 14:12:23 +01:00
|
|
|
, python33Packages
|
2013-02-16 17:11:32 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert readline != null -> ncurses != null;
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
majorVersion = "3.3";
|
2015-01-24 10:38:54 +00:00
|
|
|
pythonVersion = majorVersion;
|
2014-11-01 03:49:43 +00:00
|
|
|
version = "${majorVersion}.6";
|
2013-02-16 17:11:32 +00:00
|
|
|
|
|
|
|
buildInputs = filter (p: p != null) [
|
2014-03-23 14:48:33 +00:00
|
|
|
zlib bzip2 lzma gdbm sqlite db readline ncurses openssl tcl tk libX11 xproto
|
2013-02-16 17:11:32 +00:00
|
|
|
];
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "python3-${version}";
|
2015-01-24 10:38:54 +00:00
|
|
|
pythonVersion = majorVersion;
|
2013-02-16 17:11:32 +00:00
|
|
|
inherit majorVersion version;
|
|
|
|
|
2016-05-15 12:37:29 +01:00
|
|
|
inherit buildInputs;
|
|
|
|
|
2013-02-16 17:11:32 +00:00
|
|
|
src = fetchurl {
|
2014-02-19 23:44:51 +00:00
|
|
|
url = "http://www.python.org/ftp/python/${version}/Python-${version}.tar.xz";
|
2014-11-01 03:49:43 +00:00
|
|
|
sha256 = "0gsxpgd5p4mwd01gw501vsyahncyw3h9836ypkr3y32kgazy89jj";
|
2013-02-16 17:11:32 +00:00
|
|
|
};
|
|
|
|
|
2013-07-27 19:51:54 +01:00
|
|
|
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s";
|
|
|
|
|
2013-02-16 17:11:32 +00: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"''}
|
|
|
|
|
|
|
|
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)}"
|
2014-07-09 05:15:22 +01:00
|
|
|
LIBS="${optionalString (!stdenv.isDarwin) "-lcrypt"} ${optionalString (ncurses != null) "-lncurses"}"
|
2013-02-16 17:11:32 +00:00
|
|
|
)
|
|
|
|
'';
|
|
|
|
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
|
|
|
postInstall = ''
|
2014-10-23 11:07:07 +01:00
|
|
|
# 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
|
2013-07-29 13:52:19 +01:00
|
|
|
ln -s "$out/include/python${majorVersion}m" "$out/include/python${majorVersion}"
|
2014-03-17 18:11:12 +00:00
|
|
|
paxmark E $out/bin/python${majorVersion}
|
2013-02-16 17:11:32 +00:00
|
|
|
'';
|
|
|
|
|
2014-07-07 17:39:57 +01:00
|
|
|
passthru = rec {
|
2013-02-16 17:11:32 +00:00
|
|
|
zlibSupport = zlib != null;
|
|
|
|
sqliteSupport = sqlite != null;
|
2014-01-31 20:05:37 +00:00
|
|
|
dbSupport = db != null;
|
2013-02-16 17:11:32 +00:00
|
|
|
readlineSupport = readline != null;
|
|
|
|
opensslSupport = openssl != null;
|
|
|
|
tkSupport = (tk != null) && (tcl != null) && (libX11 != null) && (xproto != null);
|
2013-07-27 19:51:54 +01:00
|
|
|
libPrefix = "python${majorVersion}";
|
|
|
|
executable = "python3.3m";
|
2014-10-19 18:48:07 +01:00
|
|
|
buildEnv = callPackage ../wrapper.nix { python = self; };
|
2016-05-29 14:12:23 +01:00
|
|
|
withPackages = import ../with-packages.nix { inherit buildEnv; pythonPackages = python33Packages; };
|
2014-07-09 16:34:08 +01:00
|
|
|
isPy3 = true;
|
|
|
|
isPy33 = true;
|
|
|
|
is_py3k = true; # deprecated
|
2014-07-07 17:39:57 +01:00
|
|
|
sitePackages = "lib/${libPrefix}/site-packages";
|
2014-11-12 23:42:12 +00:00
|
|
|
interpreter = "${self}/bin/${executable}";
|
2013-02-16 17:11:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
2014-01-30 12:57:16 +00:00
|
|
|
homepage = http://python.org;
|
|
|
|
description = "A high-level dynamically-typed programming language";
|
2013-02-16 17:11:32 +00:00
|
|
|
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.
|
|
|
|
'';
|
|
|
|
license = stdenv.lib.licenses.psfl;
|
2014-07-09 05:15:22 +01:00
|
|
|
platforms = with stdenv.lib.platforms; linux ++ darwin;
|
2016-05-16 21:30:20 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ chaoflow cstrahan ];
|
2013-02-16 17:11:32 +00:00
|
|
|
};
|
|
|
|
}
|