summary refs log tree commit diff
path: root/pkgs/development/interpreters/python/default.nix
blob: 9e6236892b57ee9b1c126eca17b816a575af40ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{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;
}