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. */
|
|
|
|
|
2012-12-14 20:21:18 +01:00
|
|
|
{ python, setuptools, wrapPython, lib, offlineDistutils, recursivePthLoader }:
|
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
|
|
|
|
2012-12-03 05:20:50 +01:00
|
|
|
, propagatedBuildInputs ? []
|
|
|
|
|
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 ?
|
|
|
|
''
|
2012-07-21 00:20:21 +02:00
|
|
|
easy_install --always-unzip --prefix="$out" .
|
2011-03-28 17:30:48 +02:00
|
|
|
''
|
|
|
|
|
2012-11-29 15:29:41 +01:00
|
|
|
, preConfigure ? "true"
|
|
|
|
|
2011-03-28 17:30:48 +02:00
|
|
|
, 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
|
|
|
|
''
|
2012-12-03 04:41:19 +01:00
|
|
|
|
2013-01-09 15:44:48 +01:00
|
|
|
, preInstall ? ""
|
2011-03-28 17:30:48 +02:00
|
|
|
, postInstall ? ""
|
2009-06-28 16:05:41 +02:00
|
|
|
|
2013-01-19 18:21:23 +01:00
|
|
|
, meta ? {}
|
|
|
|
|
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
|
|
|
|
2013-01-21 04:43:59 +01:00
|
|
|
# default to python's platforms and add maintainer(s) to every
|
|
|
|
# package
|
2013-01-19 18:21:23 +01:00
|
|
|
meta = {
|
|
|
|
platforms = python.meta.platforms;
|
2013-01-21 04:43:59 +01:00
|
|
|
} // meta // {
|
|
|
|
maintainers = (meta.maintainers or []) ++ [ lib.maintainers.chaoflow ];
|
|
|
|
};
|
2013-01-19 18:21:23 +01:00
|
|
|
|
2013-01-09 05:21:01 +01:00
|
|
|
# checkPhase after installPhase to run tests on installed packages
|
2012-12-03 08:01:16 +01:00
|
|
|
phases = "unpackPhase patchPhase configurePhase buildPhase installPhase checkPhase fixupPhase distPhase";
|
|
|
|
|
2012-02-28 01:06:52 +01:00
|
|
|
buildInputs = [ python wrapPython setuptools ] ++ buildInputs ++ pythonPath;
|
2009-05-24 23:02:59 +02:00
|
|
|
|
2013-01-11 10:54:25 +01:00
|
|
|
propagatedBuildInputs = propagatedBuildInputs ++ [ recursivePthLoader ];
|
|
|
|
|
2013-01-09 22:29:41 +01:00
|
|
|
pythonPath = [ setuptools ] ++ pythonPath;
|
2012-11-23 17:27:55 +01:00
|
|
|
|
2012-11-29 15:29:41 +01:00
|
|
|
preConfigure = ''
|
|
|
|
PYTHONPATH="${offlineDistutils}/lib/${python.libPrefix}/site-packages:$PYTHONPATH"
|
|
|
|
${preConfigure}
|
|
|
|
'';
|
2009-05-24 23:02:59 +02:00
|
|
|
|
2013-01-09 15:44:48 +01:00
|
|
|
installPhase = preInstall + ''
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p "$out/lib/${python.libPrefix}/site-packages"
|
2009-05-24 23:02:59 +02:00
|
|
|
|
|
|
|
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
|
|
|
|
2012-11-23 15:54:55 +01:00
|
|
|
# A pth file might have been generated to load the package from
|
|
|
|
# within its own site-packages, rename this package not to
|
|
|
|
# collide with others.
|
|
|
|
eapth="$out/lib/${python.libPrefix}"/site-packages/easy-install.pth
|
|
|
|
if [ -e "$eapth" ]; then
|
|
|
|
# move colliding easy_install.pth to specifically named one
|
|
|
|
mv "$eapth" $(dirname "$eapth")/${name}.pth
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Remove any site.py files generated by easy_install as these
|
|
|
|
# cause collisions. If pth files are to be processed a
|
|
|
|
# corresponding site.py needs to be included in the PYTHONPATH.
|
2012-12-22 02:15:08 +01:00
|
|
|
rm -f "$out/lib/${python.libPrefix}"/site-packages/site.py*
|
2012-11-23 15:54:55 +01:00
|
|
|
|
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
|
2012-07-21 01:55:50 +02:00
|
|
|
|
|
|
|
for inputsfile in propagated-build-inputs propagated-build-native-inputs; do
|
|
|
|
if test -e $out/nix-support/$inputsfile; then
|
|
|
|
createBuildInputsPth $inputsfile "$(cat $out/nix-support/$inputsfile)"
|
|
|
|
fi
|
|
|
|
done
|
2011-03-28 17:30:48 +02:00
|
|
|
'';
|
|
|
|
})
|