about summary refs log tree commit diff
path: root/pkgs/development/python2-packages/ZopeInterface
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2010-04-17 18:28:25 +0000
committerMarc Weber <marco-oweber@gmx.de>2010-04-17 18:28:25 +0000
commit8c0b7e4ad2c23b3bb9c71c431520096d4361942f (patch)
tree966d85d67800a84f43d3ac06722c81619b623b62 /pkgs/development/python2-packages/ZopeInterface
parent9e59164e5747235892f81ed6b6db67c63be89fe5 (diff)
downloadnixlib-8c0b7e4ad2c23b3bb9c71c431520096d4361942f.tar
nixlib-8c0b7e4ad2c23b3bb9c71c431520096d4361942f.tar.gz
nixlib-8c0b7e4ad2c23b3bb9c71c431520096d4361942f.tar.bz2
nixlib-8c0b7e4ad2c23b3bb9c71c431520096d4361942f.tar.lz
nixlib-8c0b7e4ad2c23b3bb9c71c431520096d4361942f.tar.xz
nixlib-8c0b7e4ad2c23b3bb9c71c431520096d4361942f.tar.zst
nixlib-8c0b7e4ad2c23b3bb9c71c431520096d4361942f.zip
- adding experimental python31 build
- cleanup python libraries:
 * moving all python libraries into a attr set into a directory
   so that expressions can be used for both: python 2.5 and 2.6 easily
 * disabling packages which don't build

svn path=/nixpkgs/trunk/; revision=21142
Diffstat (limited to 'pkgs/development/python2-packages/ZopeInterface')
-rw-r--r--pkgs/development/python2-packages/ZopeInterface/default.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/development/python2-packages/ZopeInterface/default.nix b/pkgs/development/python2-packages/ZopeInterface/default.nix
new file mode 100644
index 000000000000..6bcedcd0f171
--- /dev/null
+++ b/pkgs/development/python2-packages/ZopeInterface/default.nix
@@ -0,0 +1,12 @@
+{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";
+}