summary refs log blame commit diff
path: root/pkgs/development/interpreters/pyrex/0.9.6.nix
blob: 12429c05fe637b88409840d880be484d2ba95335 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                   
 
                           
 
                                    

                  
 
                  
                                                                                                     
                                                                    
    
 

                  
          
                                                                           
                                                                    
                                 
    
 
{ lib, fetchurl, python2Packages }:

let version = "0.9.6.4"; in

python2Packages.buildPythonPackage {
  pname = "pyrex";
  inherit version;

  src = fetchurl {
    url = "https://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/oldtar/Pyrex-${version}.tar.gz";
    sha256 = "18pd9f8al3l6i27cc0ddhgg7hxf28lnfs75x4a8jzscydxgiq5a8";
  };

  doCheck = false;

  meta = {
    homepage = "http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/";
    description = "A language for writing Python extension modules";
    license = lib.licenses.asl20;
  };
}