summary refs log tree commit diff
path: root/pkgs/development/interpreters/pyrex/0.9.6.nix
blob: 7125a2aff20e9ea55a99e74f5a4fd234214dc865 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
args: with args;

let

  localDefs = builderDefs.meta.function {

    src = fetchurl {
      url = http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/oldtar/Pyrex-0.9.6.4.tar.gz;
      sha256 = "18pd9f8al3l6i27cc0ddhgg7hxf28lnfs75x4a8jzscydxgiq5a8";
    };

    buildInputs = [python];

  };

in with localDefs;
        
stdenv.mkDerivation rec {
  name = "pyrex-0.9.6.4";
  builder = writeScript (name + "-builder")
    (textClosure localDefs [installPythonPackage doForceShare]);
  meta = {
    description = "Python package compiler or something like that";
    inherit src;
  };
}