From 0784550c35e0b0e53b0b5ae6957d708102bb17a7 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Thu, 12 Jun 2008 15:59:59 +0000 Subject: Added ViewMTN and dependency; currently ViewMTN has to be manually symlinked in corresponding directory. svn path=/nixpkgs/trunk/; revision=12060 --- pkgs/development/python-modules/setuptools/0.6c8.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pkgs/development/python-modules/setuptools/0.6c8.nix (limited to 'pkgs/development/python-modules/setuptools') 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"; + }; +} -- cgit 1.4.1