summary refs log tree commit diff
path: root/pkgs/development/interpreters/pyrex/0.9.5.nix
blob: d8e687980aa793aca07f2a9ebaa96f896ad2cd21 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, python2Packages }:

let version = "0.9.5.1.1"; in

python2Packages.buildPythonPackage {
  name = "pyrex-${version}";

  src = fetchurl {
    url = "https://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/oldtar/Pyrex-${version}.tar.gz";
    sha256 = "0lxxvn4mjfb83swcbqb5908q4iy53w4ip5i0f9angm2va1jyhd3z";
  };

  doCheck = false;

  meta = {
    homepage = http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/;
    description = "A language for writing Python extension modules";
    license = stdenv.lib.licenses.asl20;
  };
}