Move zope.interface' to python-packages.nix'.

svn path=/nixpkgs/trunk/; revision=20305
This commit is contained in:
Ludovic Courtès
2010-03-01 13:12:52 +00:00
parent ff88e57803
commit 67b7a89daf
3 changed files with 17 additions and 16 deletions

View File

@@ -1,12 +0,0 @@
{stdenv, fetchurl, python}:
stdenv.mkDerivation {
name = "ZopeInterface-3.3.0";
src = fetchurl {
url = http://www.zope.org/Products/ZopeInterface/3.3.0/zope.interface-3.3.0.tar.gz;
sha256 = "0xahg9cmagn4j3dbifvgzbjliw2jdrbf27fhqwkdp8j80xpyyjf0";
};
buildInputs = [python];
buildPhase = "true";
installPhase = "python ./setup.py install --prefix=$out";
}