2011-04-19 20:10:15 +02:00
|
|
|
{ stdenv, fetchurl
|
|
|
|
, bzip2
|
|
|
|
, db4
|
2012-04-27 10:20:46 +02:00
|
|
|
, gdbm
|
|
|
|
, libX11, xproto
|
2011-04-19 20:10:15 +02:00
|
|
|
, ncurses
|
|
|
|
, openssl
|
2012-04-27 10:20:46 +02:00
|
|
|
, readline
|
|
|
|
, sqlite
|
2011-04-19 20:10:15 +02:00
|
|
|
, tcl, tk
|
2012-04-27 10:20:46 +02:00
|
|
|
, zlib
|
2011-04-19 20:10:15 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert readline != null -> ncurses != null;
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
majorVersion = "3.2";
|
2012-04-27 10:20:46 +02:00
|
|
|
version = "${majorVersion}.3";
|
2011-04-19 20:10:15 +02:00
|
|
|
|
|
|
|
buildInputs = filter (p: p != null) [
|
2012-04-23 17:47:31 +02:00
|
|
|
zlib bzip2 gdbm sqlite db4 readline ncurses openssl tcl tk libX11 xproto
|
2011-04-19 20:10:15 +02:00
|
|
|
];
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "python3-${version}";
|
|
|
|
inherit majorVersion version;
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.python.org/ftp/python/${version}/Python-${version}.tar.bz2";
|
2012-04-27 10:20:46 +02:00
|
|
|
sha256 = "5648ec81f93870fde2f0aa4ed45c8718692b15ce6fd9ed309bfb827ae12010aa";
|
2011-04-19 20:10:15 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
for i in /usr /sw /opt /pkg; do # improve purity
|
|
|
|
substituteInPlace ./setup.py --replace $i /no-such-path
|
|
|
|
done
|
2012-04-27 10:20:46 +02:00
|
|
|
${optionalString stdenv.isDarwin ''export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -msse2"''}
|
|
|
|
|
|
|
|
configureFlagsArray=( --enable-shared --with-threads
|
|
|
|
CPPFLAGS="${concatStringsSep " " (map (p: "-I${p}/include") buildInputs)}"
|
|
|
|
LDFLAGS="${concatStringsSep " " (map (p: "-L${p}/lib") buildInputs)}"
|
|
|
|
LIBS="-lcrypt ${optionalString (ncurses != null) "-lncurses"}"
|
|
|
|
)
|
2011-04-19 20:10:15 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
rm -rf "$out/lib/python${majorVersion}/test"
|
|
|
|
'';
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
zlibSupport = zlib != null;
|
|
|
|
sqliteSupport = sqlite != null;
|
|
|
|
db4Support = db4 != null;
|
|
|
|
readlineSupport = readline != null;
|
|
|
|
opensslSupport = openssl != null;
|
2012-04-27 10:20:46 +02:00
|
|
|
tkSupport = (tk != null) && (tcl != null) && (libX11 != null) && (xproto != null);
|
2011-04-19 20:10:15 +02:00
|
|
|
libPrefix = "python${majorVersion}";
|
|
|
|
};
|
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
2012-02-26 18:23:16 +01:00
|
|
|
license = stdenv.lib.licenses.psfl;
|
2011-04-19 20:10:15 +02:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2012-02-26 18:23:16 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ simons chaoflow ];
|
2011-04-19 20:10:15 +02:00
|
|
|
};
|
|
|
|
}
|