2009-05-24 23:02:59 +02:00
|
|
|
/* This function provides a generic Python package builder. It is
|
|
|
|
intended to work with packages that use `setuptools'
|
|
|
|
(http://pypi.python.org/pypi/setuptools/), which represents a large
|
|
|
|
number of Python packages nowadays. */
|
|
|
|
|
2011-03-28 18:33:33 +02:00
|
|
|
{ python, setuptools, wrapPython, lib }:
|
2009-05-24 23:02:59 +02:00
|
|
|
|
2011-03-28 17:30:48 +02:00
|
|
|
{ name, namePrefix ? "python-"
|
2009-05-24 23:02:59 +02:00
|
|
|
|
2011-03-28 17:30:48 +02:00
|
|
|
, buildInputs ? []
|
2010-07-28 15:05:04 +02:00
|
|
|
|
2011-03-28 17:30:48 +02:00
|
|
|
, # List of packages that should be added to the PYTHONPATH
|
|
|
|
# environment variable in programs built by this function. Packages
|
|
|
|
# in the standard `propagatedBuildInputs' variable are also added.
|
|
|
|
# The difference is that `pythonPath' is not propagated to the user
|
|
|
|
# environment. This is preferrable for programs because it doesn't
|
|
|
|
# pollute the user environment.
|
|
|
|
pythonPath ? []
|
2009-05-24 23:02:59 +02:00
|
|
|
|
2011-03-28 17:30:48 +02:00
|
|
|
, installCommand ?
|
|
|
|
''
|
|
|
|
easy_install --prefix="$out" .
|
|
|
|
''
|
|
|
|
|
|
|
|
, buildPhase ? "true"
|
2009-05-24 23:02:59 +02:00
|
|
|
|
2011-03-30 14:27:04 +02:00
|
|
|
, doCheck ? true
|
|
|
|
|
|
|
|
, checkPhase ?
|
|
|
|
''
|
|
|
|
runHook preCheck
|
|
|
|
python setup.py test
|
|
|
|
runHook postCheck
|
|
|
|
''
|
2009-06-28 16:05:41 +02:00
|
|
|
|
2011-03-28 17:30:48 +02:00
|
|
|
, postInstall ? ""
|
2009-06-28 16:05:41 +02:00
|
|
|
|
2011-03-28 17:30:48 +02:00
|
|
|
, ... } @ attrs:
|
2009-05-24 23:02:59 +02:00
|
|
|
|
2011-03-28 17:30:48 +02:00
|
|
|
# Keep extra attributes from ATTR, e.g., `patchPhase', etc.
|
|
|
|
python.stdenv.mkDerivation (attrs // {
|
|
|
|
inherit doCheck buildPhase checkPhase;
|
2009-05-24 23:02:59 +02:00
|
|
|
|
2011-03-28 17:30:48 +02:00
|
|
|
name = namePrefix + name;
|
2009-05-24 23:02:59 +02:00
|
|
|
|
2011-03-28 18:33:33 +02:00
|
|
|
buildInputs = [ python wrapPython setuptools ] ++ buildInputs ++ pythonPath;
|
2009-05-24 23:02:59 +02:00
|
|
|
|
2011-03-28 17:30:48 +02:00
|
|
|
pythonPath = [ setuptools] ++ pythonPath;
|
2009-05-24 23:02:59 +02:00
|
|
|
|
2009-05-24 23:14:32 +02:00
|
|
|
# XXX: Should we run `easy_install --always-unzip'? It doesn't seem
|
|
|
|
# to have a noticeable impact on small scripts.
|
2009-05-24 23:02:59 +02:00
|
|
|
installPhase = ''
|
|
|
|
ensureDir "$out/lib/${python.libPrefix}/site-packages"
|
|
|
|
|
|
|
|
echo "installing \`${name}' with \`easy_install'..."
|
|
|
|
export PYTHONPATH="$out/lib/${python.libPrefix}/site-packages:$PYTHONPATH"
|
2011-03-28 17:30:48 +02:00
|
|
|
${installCommand}
|
2009-08-11 18:25:41 +02:00
|
|
|
|
|
|
|
${postInstall}
|
2009-05-24 23:02:59 +02:00
|
|
|
'';
|
|
|
|
|
2011-03-28 17:30:48 +02:00
|
|
|
postFixup =
|
|
|
|
''
|
2011-03-28 18:33:33 +02:00
|
|
|
wrapPythonPrograms
|
2011-03-28 17:30:48 +02:00
|
|
|
|
|
|
|
# If a user installs a Python package, she probably also wants its
|
|
|
|
# dependencies in the user environment (since Python modules don't
|
|
|
|
# have something like an RPATH, so the only way to find the
|
|
|
|
# dependencies is to have them in the PYTHONPATH variable).
|
|
|
|
if test -e $out/nix-support/propagated-build-inputs; then
|
|
|
|
ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages
|
2009-05-24 23:02:59 +02:00
|
|
|
fi
|
2011-03-28 17:30:48 +02:00
|
|
|
'';
|
|
|
|
})
|