summary refs log tree commit diff
path: root/pkgs/development/interpreters/cython/default.nix
blob: 34bd63c29abfe6d209dfa0482b420cc7eb89bcbe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, python, pkgconfig }:

stdenv.mkDerivation {
  name = "cython-0.16";

  src = fetchurl {
    url = http://www.cython.org/release/Cython-0.16.tar.gz;
    sha256 = "1yz6jwv25xx5mbr2nm4l7mi65gvpm63dzi3vrw73p51wbpy525lp";
  };

  buildPhase = "python setup.py build --build-base $out";

  installPhase = "python setup.py install --prefix=$out";

  buildInputs = [ python pkgconfig ];

  meta = {
    description = "An interpreter to help writing C extensions for Python";
    platforms = stdenv.lib.platforms.all;
  };
}