2009-05-24 23:02:59 +02:00
|
|
|
/* This function provides a generic Python package builder. It is
|
2014-01-06 23:24:05 +01:00
|
|
|
intended to work with packages that use `distutils/setuptools'
|
2009-05-24 23:02:59 +02:00
|
|
|
(http://pypi.python.org/pypi/setuptools/), which represents a large
|
|
|
|
number of Python packages nowadays. */
|
|
|
|
|
2015-11-17 11:38:26 +01:00
|
|
|
{ python, setuptools, unzip, wrapPython, lib, bootstrapped-pip }:
|
2009-05-24 23:02:59 +02:00
|
|
|
|
2014-01-06 23:24:05 +01:00
|
|
|
{ name
|
2009-05-24 23:02:59 +02:00
|
|
|
|
2014-01-11 11:44:24 +01:00
|
|
|
# by default prefix `name` e.g. "python3.3-${name}"
|
2014-01-06 23:24:05 +01:00
|
|
|
, namePrefix ? python.libPrefix + "-"
|
2010-07-28 15:05:04 +02:00
|
|
|
|
2014-01-06 23:24:05 +01:00
|
|
|
, buildInputs ? []
|
2012-12-03 05:20:50 +01:00
|
|
|
|
2014-01-11 11:44:24 +01:00
|
|
|
# propagate build dependencies so in case we have A -> B -> C,
|
|
|
|
# C can import propagated packages by A
|
2014-01-06 23:24:05 +01:00
|
|
|
, propagatedBuildInputs ? []
|
2013-01-17 14:19:14 +01:00
|
|
|
|
2014-01-06 23:24:05 +01:00
|
|
|
# passed to "python setup.py build"
|
2015-11-17 11:38:26 +01:00
|
|
|
# https://github.com/pypa/pip/issues/881
|
2014-01-06 23:24:05 +01:00
|
|
|
, setupPyBuildFlags ? []
|
2009-05-24 23:02:59 +02:00
|
|
|
|
2014-01-06 23:24:05 +01:00
|
|
|
# enable tests by default
|
2011-03-30 14:27:04 +02:00
|
|
|
, doCheck ? true
|
|
|
|
|
2015-11-17 11:38:26 +01:00
|
|
|
# DEPRECATED: use propagatedBuildInputs
|
2014-08-24 16:01:21 +02:00
|
|
|
, pythonPath ? []
|
|
|
|
|
|
|
|
# used to disable derivation, useful for specific python versions
|
|
|
|
, disabled ? false
|
2009-06-28 16:05:41 +02:00
|
|
|
|
2014-01-10 21:57:28 +01:00
|
|
|
, meta ? {}
|
2013-01-19 18:21:23 +01:00
|
|
|
|
2014-03-10 10:06:04 +01:00
|
|
|
# Execute before shell hook
|
|
|
|
, preShellHook ? ""
|
|
|
|
|
|
|
|
# Execute after shell hook
|
|
|
|
, postShellHook ? ""
|
|
|
|
|
2015-05-24 17:19:13 +02:00
|
|
|
# Additional arguments to pass to the makeWrapper function, which wraps
|
|
|
|
# generated binaries.
|
|
|
|
, makeWrapperArgs ? []
|
2015-05-22 06:32:03 +02:00
|
|
|
|
2011-03-28 17:30:48 +02:00
|
|
|
, ... } @ attrs:
|
2009-05-24 23:02:59 +02:00
|
|
|
|
2014-08-24 16:01:21 +02:00
|
|
|
|
2014-01-06 23:24:05 +01:00
|
|
|
# Keep extra attributes from `attrs`, e.g., `patchPhase', etc.
|
2015-05-22 06:32:03 +02:00
|
|
|
if disabled
|
|
|
|
then throw "${name} not supported for interpreter ${python.executable}"
|
|
|
|
else
|
|
|
|
|
2015-11-17 11:38:26 +01:00
|
|
|
let
|
2015-11-18 11:44:37 +01:00
|
|
|
setuppy = ./run_setup.py;
|
2015-11-17 11:38:26 +01:00
|
|
|
in
|
2015-10-30 11:31:09 +01:00
|
|
|
python.stdenv.mkDerivation (builtins.removeAttrs attrs ["disabled"] // {
|
2014-01-06 23:24:05 +01:00
|
|
|
inherit doCheck;
|
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
|
|
|
|
2015-11-17 11:38:26 +01:00
|
|
|
buildInputs = [ wrapPython bootstrapped-pip ] ++ buildInputs ++ pythonPath
|
2014-03-10 14:51:05 +01:00
|
|
|
++ (lib.optional (lib.hasSuffix "zip" attrs.src.name or "") unzip);
|
2009-05-24 23:02:59 +02:00
|
|
|
|
2015-04-13 03:15:31 +02:00
|
|
|
# propagate python/setuptools to active setup-hook in nix-shell
|
2015-11-17 11:38:26 +01:00
|
|
|
propagatedBuildInputs = propagatedBuildInputs ++ [ python setuptools ];
|
2012-07-21 01:55:50 +02:00
|
|
|
|
2015-04-13 03:15:31 +02:00
|
|
|
pythonPath = pythonPath;
|
2012-11-23 17:27:55 +01:00
|
|
|
|
2014-01-06 23:24:05 +01:00
|
|
|
configurePhase = attrs.configurePhase or ''
|
|
|
|
runHook preConfigure
|
|
|
|
|
2014-01-10 22:04:05 +01:00
|
|
|
# patch python interpreter to write null timestamps when compiling python files
|
2015-11-17 11:38:26 +01:00
|
|
|
# this way python doesn't try to update them when we freeze timestamps in nix store
|
2013-06-22 07:52:27 +02:00
|
|
|
export DETERMINISTIC_BUILD=1
|
2014-01-06 23:24:05 +01:00
|
|
|
|
|
|
|
runHook postConfigure
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = attrs.buildPhase or ''
|
|
|
|
runHook preBuild
|
2015-11-18 11:44:37 +01:00
|
|
|
cp ${setuppy} nix_run_setup.py
|
|
|
|
${python.interpreter} nix_run_setup.py build_ext ${lib.concatStringsSep " " setupPyBuildFlags} bdist_wheel
|
2014-01-06 23:24:05 +01:00
|
|
|
runHook postBuild
|
2012-11-29 15:29:41 +01:00
|
|
|
'';
|
2009-05-24 23:02:59 +02:00
|
|
|
|
2015-11-18 11:44:37 +01:00
|
|
|
checkPhase = attrs.checkPhase or ''
|
|
|
|
runHook preCheck
|
|
|
|
${python.interpreter} nix_run_setup.py test
|
|
|
|
runHook postCheck
|
|
|
|
'';
|
|
|
|
|
2014-01-06 23:24:05 +01:00
|
|
|
installPhase = attrs.installPhase or ''
|
|
|
|
runHook preInstall
|
|
|
|
|
2015-11-17 11:38:26 +01:00
|
|
|
mkdir -p "$out/${python.sitePackages}"
|
|
|
|
export PYTHONPATH="$out/${python.sitePackages}:$PYTHONPATH"
|
2012-11-23 15:54:55 +01:00
|
|
|
|
2015-11-17 11:38:26 +01:00
|
|
|
pushd dist
|
|
|
|
${bootstrapped-pip}/bin/pip install *.whl --no-index --prefix=$out
|
|
|
|
popd
|
2012-11-23 15:54:55 +01:00
|
|
|
|
2014-01-06 23:24:05 +01:00
|
|
|
runHook postInstall
|
2009-05-24 23:02:59 +02:00
|
|
|
'';
|
|
|
|
|
2014-05-21 14:46:37 +02:00
|
|
|
postFixup = attrs.postFixup or ''
|
2015-11-17 11:38:26 +01:00
|
|
|
wrapPythonPrograms
|
2015-11-18 11:46:21 +01:00
|
|
|
|
|
|
|
# check if we have two packagegs with the same name in closure and fail
|
|
|
|
# this shouldn't happen, something went wrong with dependencies specs
|
2015-11-18 12:39:43 +01:00
|
|
|
${python.interpreter} ${./do_conflict.py}
|
2015-11-17 11:38:26 +01:00
|
|
|
'';
|
2014-01-06 23:24:05 +01:00
|
|
|
|
2014-03-10 10:06:04 +01:00
|
|
|
shellHook = attrs.shellHook or ''
|
2015-11-15 13:49:20 +01:00
|
|
|
${preShellHook}
|
2014-06-15 16:05:09 +02:00
|
|
|
if test -e setup.py; then
|
2015-11-15 13:49:20 +01:00
|
|
|
tmp_path=$(mktemp -d)
|
2014-09-19 14:23:45 +02:00
|
|
|
export PATH="$tmp_path/bin:$PATH"
|
2015-11-15 13:49:20 +01:00
|
|
|
export PYTHONPATH="$tmp_path/${python.sitePackages}:$PYTHONPATH"
|
|
|
|
${python.interpreter} setup.py develop --prefix $tmp_path
|
2014-06-15 16:05:09 +02:00
|
|
|
fi
|
2015-11-15 13:49:20 +01:00
|
|
|
${postShellHook}
|
2014-03-10 10:06:04 +01:00
|
|
|
'';
|
|
|
|
|
2014-01-22 10:15:26 +01:00
|
|
|
meta = with lib.maintainers; {
|
2014-01-06 23:24:05 +01:00
|
|
|
# default to python's platforms
|
|
|
|
platforms = python.meta.platforms;
|
2014-01-22 10:15:26 +01:00
|
|
|
} // meta // {
|
2014-01-06 23:24:05 +01:00
|
|
|
# add extra maintainer(s) to every package
|
2014-01-11 11:44:24 +01:00
|
|
|
maintainers = (meta.maintainers or []) ++ [ chaoflow iElectric ];
|
2014-01-06 23:24:05 +01:00
|
|
|
};
|
2011-03-28 17:30:48 +02:00
|
|
|
})
|