* Some Python packages.
svn path=/nixpkgs/trunk/; revision=7339
This commit is contained in:
12
pkgs/development/python-modules/ZopeInterface/default.nix
Normal file
12
pkgs/development/python-modules/ZopeInterface/default.nix
Normal file
@@ -0,0 +1,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";
|
||||
}
|
||||
Reference in New Issue
Block a user