nixpkgs/pkgs/development/interpreters/python/default.nix
Eelco Dolstra cba0649530 * Python updated to 2.3.4.
svn path=/nixpkgs/trunk/; revision=1451
2004-09-18 21:12:25 +00:00

16 lines
368 B
Nix

{stdenv, fetchurl, zlib ? null, zlibSupport ? true}:
assert zlibSupport -> zlib != null;
stdenv.mkDerivation {
name = "python-2.3.4";
src = fetchurl {
url = http://www.python.org/ftp/python/2.3.4/Python-2.3.4.tar.bz2;
md5 = "a2c089faa2726c142419c03472fc4063";
};
buildInputs = [
(if zlibSupport then zlib else null)
];
inherit zlibSupport;
}