summary refs log tree commit diff
path: root/pkgs/development/interpreters/pyrex/0.9.6.nix
blob: 3747bbed4c3092fe0f3cdf7692ebd75b43c20942 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
args : with args;
	let localDefs = builderDefs {
		src = /* put a fetchurl here */
	fetchurl {
		url = http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/oldtar/Pyrex-0.9.6.tar.gz;
		sha256 = "1i0mrv2a3ihnj5mjf07aic7nlps9qap57j477m8ajwhhwx9vwlxy";
	};
		buildInputs = [python];
		configureFlags = [];
	} null; /* null is a terminator for sumArgs */
	in with localDefs;
stdenv.mkDerivation rec {
	name = "Pyrex-"+version;
	builder = writeScript (name + "-builder")
		(textClosure localDefs [installPythonPackage doForceShare]);
	meta = {
		description = "
	Python package compiler or something like that.	
";
		inherit src;
	};
}