2006-12-13 19:04:03 +01:00
|
|
|
{stdenv, fetchurl, python}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2008-01-18 12:28:41 +01:00
|
|
|
name = "ZopeInterface-3.3.0";
|
2006-12-13 19:04:03 +01:00
|
|
|
src = fetchurl {
|
2008-01-18 12:28:41 +01:00
|
|
|
url = http://www.zope.org/Products/ZopeInterface/3.3.0/zope.interface-3.3.0.tar.gz;
|
|
|
|
sha256 = "0xahg9cmagn4j3dbifvgzbjliw2jdrbf27fhqwkdp8j80xpyyjf0";
|
2006-12-13 19:04:03 +01:00
|
|
|
};
|
|
|
|
buildInputs = [python];
|
|
|
|
buildPhase = "true";
|
|
|
|
installPhase = "python ./setup.py install --prefix=$out";
|
|
|
|
}
|