* Just-in-time compiler for Python.
svn path=/nixpkgs/trunk/; revision=7429
This commit is contained in:
parent
b0bb9f21ee
commit
fe30bcab94
|
@ -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
|
### DEVELOPMENT / PYTHON MODULES
|
||||||
|
|
||||||
|
|
||||||
|
psyco = import ../development/python-modules/psyco {
|
||||||
|
inherit fetchurl stdenv python;
|
||||||
|
};
|
||||||
|
|
||||||
pycrypto = import ../development/python-modules/pycrypto {
|
pycrypto = import ../development/python-modules/pycrypto {
|
||||||
inherit fetchurl stdenv python gmp;
|
inherit fetchurl stdenv python gmp;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue