nixpkgs/pkgs/development/interpreters/python/3.3/default.nix

89 lines
2.6 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl
2013-02-16 18:11:32 +01:00
, bzip2
, db
2013-02-16 18:11:32 +01:00
, gdbm
, libX11, xproto
2014-03-23 15:48:33 +01:00
, lzma
2013-02-16 18:11:32 +01:00
, ncurses
, openssl
, readline
, sqlite
, tcl, tk
, zlib
}:
assert readline != null -> ncurses != null;
with stdenv.lib;
let
majorVersion = "3.3";
2014-03-09 21:04:05 +01:00
version = "${majorVersion}.5";
2013-02-16 18:11:32 +01:00
buildInputs = filter (p: p != null) [
2014-03-23 15:48:33 +01:00
zlib bzip2 lzma gdbm sqlite db readline ncurses openssl tcl tk libX11 xproto
2013-02-16 18:11:32 +01:00
];
in
stdenv.mkDerivation {
name = "python3-${version}";
inherit majorVersion version;
src = fetchurl {
2014-02-20 00:44:51 +01:00
url = "http://www.python.org/ftp/python/${version}/Python-${version}.tar.xz";
2014-03-09 21:04:05 +01:00
sha256 = "1rdncc7g8g6f3lfdg33rli1yffbiq8z283xy4f5ksl1l8i49psdb";
2013-02-16 18:11:32 +01:00
};
2013-07-27 20:51:54 +02:00
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s";
2013-02-16 18:11:32 +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"''}
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"}"
)
'';
setupHook = ./setup-hook.sh;
postInstall = ''
rm -rf "$out/lib/python${majorVersion}/test"
ln -s "$out/include/python${majorVersion}m" "$out/include/python${majorVersion}"
2013-02-16 18:11:32 +01:00
'';
passthru = {
zlibSupport = zlib != null;
sqliteSupport = sqlite != null;
dbSupport = db != null;
2013-02-16 18:11:32 +01:00
readlineSupport = readline != null;
opensslSupport = openssl != null;
tkSupport = (tk != null) && (tcl != null) && (libX11 != null) && (xproto != null);
2013-07-27 20:51:54 +02:00
libPrefix = "python${majorVersion}";
executable = "python3.3m";
is_py3k = true;
2013-02-16 18:11:32 +01:00
};
enableParallelBuilding = true;
meta = {
homepage = http://python.org;
description = "A high-level dynamically-typed programming language";
2013-02-16 18:11:32 +01: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;
platforms = stdenv.lib.platforms.linux;
2013-02-16 18:11:32 +01:00
maintainers = with stdenv.lib.maintainers; [ simons chaoflow ];
};
}