nixpkgs/pkgs/development/interpreters/pyrex/0.9.6.nix

22 lines
563 B
Nix
Raw Normal View History

2018-08-06 13:28:07 +02:00
{ stdenv, fetchurl, python2Packages }:
2012-07-18 15:49:27 +02:00
let version = "0.9.6.4"; in
2019-08-13 23:52:01 +02:00
python2Packages.buildPythonPackage {
2019-08-31 13:41:23 +02:00
pname = "pyrex";
inherit version;
2012-07-18 15:49:27 +02:00
src = fetchurl {
url = "https://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/oldtar/Pyrex-${version}.tar.gz";
2012-07-18 15:49:27 +02:00
sha256 = "18pd9f8al3l6i27cc0ddhgg7hxf28lnfs75x4a8jzscydxgiq5a8";
};
2012-07-18 15:49:27 +02:00
doCheck = false;
meta = {
2012-07-18 15:49:27 +02:00
homepage = http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/;
description = "A language for writing Python extension modules";
2018-08-06 12:32:28 +02:00
license = stdenv.lib.licenses.asl20;
};
}