2017-11-11 15:24:38 +00:00
|
|
|
# This function provides a generic Python package builder,
|
|
|
|
# and can build packages that use distutils, setuptools or flit.
|
2009-05-24 22:02:59 +01:00
|
|
|
|
2016-08-17 13:23:47 +01:00
|
|
|
{ lib
|
|
|
|
, python
|
2017-05-28 08:20:47 +01:00
|
|
|
, wrapPython
|
|
|
|
, setuptools
|
|
|
|
, unzip
|
2018-02-13 14:32:16 +00:00
|
|
|
, ensureNewerSourcesForZipFilesHook
|
2017-12-10 13:20:38 +00:00
|
|
|
, toPythonModule
|
2017-05-28 08:20:47 +01:00
|
|
|
, namePrefix
|
2016-08-17 13:23:47 +01:00
|
|
|
, bootstrapped-pip
|
2016-12-03 12:04:52 +00:00
|
|
|
, flit
|
2016-08-17 13:23:47 +01:00
|
|
|
}:
|
2009-05-24 22:02:59 +01:00
|
|
|
|
2016-12-03 12:04:52 +00:00
|
|
|
let
|
|
|
|
setuptools-specific = import ./build-python-package-setuptools.nix { inherit lib python bootstrapped-pip; };
|
2017-02-01 13:26:27 +00:00
|
|
|
flit-specific = import ./build-python-package-flit.nix { inherit python flit; };
|
2016-12-03 12:04:52 +00:00
|
|
|
wheel-specific = import ./build-python-package-wheel.nix { };
|
|
|
|
common = import ./build-python-package-common.nix { inherit python bootstrapped-pip; };
|
2017-05-28 08:20:47 +01:00
|
|
|
mkPythonDerivation = import ./mk-python-derivation.nix {
|
2018-02-13 14:32:16 +00:00
|
|
|
inherit lib python wrapPython setuptools unzip ensureNewerSourcesForZipFilesHook toPythonModule namePrefix;
|
2017-05-28 08:20:47 +01:00
|
|
|
};
|
2016-12-03 12:04:52 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
# Several package formats are supported.
|
|
|
|
# "setuptools" : Install a common setuptools/distutils based package. This builds a wheel.
|
|
|
|
# "wheel" : Install from a pre-compiled wheel.
|
|
|
|
# "flit" : Install a flit package. This builds a wheel.
|
|
|
|
# "other" : Provide your own buildPhase and installPhase.
|
|
|
|
format ? "setuptools"
|
2011-03-28 16:30:48 +01:00
|
|
|
, ... } @ attrs:
|
2009-05-24 22:02:59 +01:00
|
|
|
|
2015-11-17 10:38:26 +00:00
|
|
|
let
|
2016-04-26 16:57:13 +01:00
|
|
|
formatspecific =
|
2016-12-03 12:04:52 +00:00
|
|
|
if format == "setuptools" then common (setuptools-specific attrs)
|
|
|
|
else if format == "flit" then common (flit-specific attrs)
|
|
|
|
else if format == "wheel" then common (wheel-specific attrs)
|
|
|
|
else if format == "other" then {}
|
|
|
|
else throw "Unsupported format ${format}";
|
2014-03-10 09:06:04 +00:00
|
|
|
|
2017-02-01 13:26:27 +00:00
|
|
|
in mkPythonDerivation ( attrs // formatspecific )
|