summary refs log tree commit diff
path: root/pkgs/development/python-modules/ZopeInterface/default.nix
blob: 0fe40954115b6028d1838e060728e07c777d999e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{stdenv, fetchurl, python}:

stdenv.mkDerivation {
  name = "ZopeInterface-3.1.0c1";
  src = fetchurl {
    url = http://www.zope.org/Products/ZopeInterface/3.1.0c1/ZopeInterface-3.1.0c1.tgz;
    md5 = "f34cb95f2fbdbe3f1850c95cefddbd2c";
  };
  buildInputs = [python];
  buildPhase = "true";
  installPhase = "python ./setup.py install --prefix=$out";
}