* Just-in-time compiler for Python.

svn path=/nixpkgs/trunk/; revision=7429
This commit is contained in:
Eelco Dolstra 2006-12-19 18:55:04 +00:00
parent b0bb9f21ee
commit fe30bcab94
2 changed files with 18 additions and 0 deletions

@ -0,0 +1,14 @@
{stdenv, fetchurl, python}:
assert stdenv.system == "i686-linux";
stdenv.mkDerivation {
name = "psyco-1.5.2";
src = fetchurl {
url = http://kent.dl.sourceforge.net/sourceforge/psyco/psyco-1.5.2-src.tar.gz;
md5 = "bceb17423d06b573dc7b875d34e79417";
};
buildInputs = [python];
buildPhase = "true";
installPhase = "python ./setup.py install --prefix=$out";
}

@ -1984,6 +1984,10 @@ rec {
### DEVELOPMENT / PYTHON MODULES
psyco = import ../development/python-modules/psyco {
inherit fetchurl stdenv python;
};
pycrypto = import ../development/python-modules/pycrypto {
inherit fetchurl stdenv python gmp;
};