summary refs log tree commit diff
path: root/pkgs/development/python-modules/setuptools
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2008-06-12 15:59:59 +0000
committerMichael Raskin <7c6f434c@mail.ru>2008-06-12 15:59:59 +0000
commit0784550c35e0b0e53b0b5ae6957d708102bb17a7 (patch)
treeec0758c1a2a63010ed86e9fad8d9befd69ab4b23 /pkgs/development/python-modules/setuptools
parent638f4bf12179a025856f29a512252bc04370c736 (diff)
downloadnixlib-0784550c35e0b0e53b0b5ae6957d708102bb17a7.tar
nixlib-0784550c35e0b0e53b0b5ae6957d708102bb17a7.tar.gz
nixlib-0784550c35e0b0e53b0b5ae6957d708102bb17a7.tar.bz2
nixlib-0784550c35e0b0e53b0b5ae6957d708102bb17a7.tar.lz
nixlib-0784550c35e0b0e53b0b5ae6957d708102bb17a7.tar.xz
nixlib-0784550c35e0b0e53b0b5ae6957d708102bb17a7.tar.zst
nixlib-0784550c35e0b0e53b0b5ae6957d708102bb17a7.zip
Added ViewMTN and dependency; currently ViewMTN has to be manually symlinked in corresponding directory.
svn path=/nixpkgs/trunk/; revision=12060
Diffstat (limited to 'pkgs/development/python-modules/setuptools')
-rw-r--r--pkgs/development/python-modules/setuptools/0.6c8.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/setuptools/0.6c8.nix b/pkgs/development/python-modules/setuptools/0.6c8.nix
new file mode 100644
index 000000000000..d8149f5514a5
--- /dev/null
+++ b/pkgs/development/python-modules/setuptools/0.6c8.nix
@@ -0,0 +1,19 @@
+
+args : with args; 
+rec {
+  src = fetchurl {
+    url = http://pypi.python.org/packages/source/s/setuptools/setuptools-0.6c8.tar.gz;
+    sha256 = "0dry431lkaqqmgvka0rhnw54ljf1yx0npzh7r81z2ylcrn27lrln";
+  };
+
+  buildInputs = [python];
+  configureFlags = [];
+
+  /* doConfigure should be specified separately */
+  phaseNames = ["createPythonInstallationTarget" "installPythonPackage"];
+      
+  name = "setuptools-" + version;
+  meta = {
+    description = "Installation utilities for Python packages";
+  };
+}