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

22 lines
565 B
Nix
Raw Normal View History

2018-08-06 11:28:07 +00:00
{ stdenv, fetchurl, python2Packages }:
2012-07-18 13:49:27 +00:00
let version = "0.9.6.4"; in
2019-08-13 21:52:01 +00:00
python2Packages.buildPythonPackage {
2019-08-31 11:41:23 +00:00
pname = "pyrex";
inherit version;
2012-07-18 13:49:27 +00:00
src = fetchurl {
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";
};
2012-07-18 13:49:27 +00:00
doCheck = false;
meta = {
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;
};
}