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