2018-08-06 03:32:28 -07:00
|
|
|
{ stdenv, fetchurl, python2Packages }:
|
2008-03-17 06:45:50 -07:00
|
|
|
|
2012-07-18 06:49:27 -07:00
|
|
|
let version = "0.9.5.1.1"; in
|
2008-03-17 06:45:50 -07:00
|
|
|
|
2019-08-13 14:52:01 -07:00
|
|
|
python2Packages.buildPythonPackage {
|
2019-08-31 04:41:23 -07:00
|
|
|
pname = "pyrex";
|
|
|
|
inherit version;
|
2008-03-17 06:45:50 -07:00
|
|
|
|
2012-07-18 06:49:27 -07:00
|
|
|
src = fetchurl {
|
2018-06-28 11:43:35 -07:00
|
|
|
url = "https://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/oldtar/Pyrex-${version}.tar.gz";
|
2012-07-18 06:49:27 -07:00
|
|
|
sha256 = "0lxxvn4mjfb83swcbqb5908q4iy53w4ip5i0f9angm2va1jyhd3z";
|
|
|
|
};
|
2008-03-17 06:45:50 -07:00
|
|
|
|
2012-07-18 06:49:27 -07:00
|
|
|
doCheck = false;
|
2008-03-17 06:45:50 -07:00
|
|
|
|
|
|
|
meta = {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/";
|
2012-07-18 06:49:27 -07:00
|
|
|
description = "A language for writing Python extension modules";
|
2018-08-06 03:32:28 -07:00
|
|
|
license = stdenv.lib.licenses.asl20;
|
2008-03-17 06:45:50 -07:00
|
|
|
};
|
|
|
|
}
|