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