add python33 (needed by new blender)
This commit is contained in:
parent
dbcdc27e03
commit
b3ce50d88a
83
pkgs/development/interpreters/python/3.3/default.nix
Normal file
83
pkgs/development/interpreters/python/3.3/default.nix
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
{ stdenv, fetchurl, pkgconfig
|
||||||
|
, bzip2
|
||||||
|
, db4
|
||||||
|
, gdbm
|
||||||
|
, libX11, xproto
|
||||||
|
, ncurses
|
||||||
|
, openssl
|
||||||
|
, readline
|
||||||
|
, sqlite
|
||||||
|
, tcl, tk
|
||||||
|
, zlib
|
||||||
|
}:
|
||||||
|
|
||||||
|
assert readline != null -> ncurses != null;
|
||||||
|
|
||||||
|
with stdenv.lib;
|
||||||
|
|
||||||
|
let
|
||||||
|
majorVersion = "3.3";
|
||||||
|
version = "${majorVersion}.0";
|
||||||
|
|
||||||
|
buildInputs = filter (p: p != null) [
|
||||||
|
pkgconfig # ToDo?: system expat, libffi libmpcdec
|
||||||
|
zlib bzip2 gdbm sqlite db4 readline ncurses openssl tcl tk libX11 xproto
|
||||||
|
];
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "python3-${version}";
|
||||||
|
inherit majorVersion version;
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://www.python.org/ftp/python/${version}/Python-${version}.tar.xz";
|
||||||
|
sha256 = "1mxvyl890br2wk4dn8giw3ihajjsh2ljg59qnas63vx8hll4v689";
|
||||||
|
};
|
||||||
|
|
||||||
|
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"
|
||||||
|
'';
|
||||||
|
|
||||||
|
passthru = {
|
||||||
|
zlibSupport = zlib != null;
|
||||||
|
sqliteSupport = sqlite != null;
|
||||||
|
db4Support = db4 != null;
|
||||||
|
readlineSupport = readline != null;
|
||||||
|
opensslSupport = openssl != null;
|
||||||
|
tkSupport = (tk != null) && (tcl != null) && (libX11 != null) && (xproto != null);
|
||||||
|
libPrefix = "python${majorVersion}m";
|
||||||
|
};
|
||||||
|
|
||||||
|
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.
|
||||||
|
'';
|
||||||
|
license = stdenv.lib.licenses.psfl;
|
||||||
|
platforms = stdenv.lib.platforms.all;
|
||||||
|
maintainers = with stdenv.lib.maintainers; [ simons chaoflow ];
|
||||||
|
};
|
||||||
|
}
|
15
pkgs/development/interpreters/python/3.3/setup-hook.sh
Normal file
15
pkgs/development/interpreters/python/3.3/setup-hook.sh
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
addPythonPath() {
|
||||||
|
addToSearchPathWithCustomDelimiter : PYTHONPATH $1/lib/python3.2/site-packages
|
||||||
|
}
|
||||||
|
|
||||||
|
toPythonPath() {
|
||||||
|
local paths="$1"
|
||||||
|
local result=
|
||||||
|
for i in $paths; do
|
||||||
|
p="$i/lib/python3.2/site-packages"
|
||||||
|
result="${result}${result:+:}$p"
|
||||||
|
done
|
||||||
|
echo $result
|
||||||
|
}
|
||||||
|
|
||||||
|
envHooks=(${envHooks[@]} addPythonPath)
|
@ -2852,6 +2852,7 @@ let
|
|||||||
|
|
||||||
python3 = python32;
|
python3 = python32;
|
||||||
python32 = callPackage ../development/interpreters/python/3.2 { };
|
python32 = callPackage ../development/interpreters/python/3.2 { };
|
||||||
|
python33 = callPackage ../development/interpreters/python/3.3 { };
|
||||||
|
|
||||||
python = python27;
|
python = python27;
|
||||||
python26 = callPackage ../development/interpreters/python/2.6 { };
|
python26 = callPackage ../development/interpreters/python/2.6 { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user