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