Skip to content

Commit 3ca6ba5

Browse files
committedAug 26, 2018
python: cythonize packages
Test to see whether we can cythonize packages. This typically fails when code is written 2 and 3 compatible. The -k keep-going flag was therefore added. By default extension modules take precedence so there is no need to remove the Python code. The store path size increases significantly, typically a factor 10.
1 parent a04cf8f commit 3ca6ba5

File tree

4 files changed

+12
-1
lines changed

4 files changed

+12
-1
lines changed
 

‎pkgs/development/interpreters/python/build-python-package.nix

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
, namePrefix
1313
, bootstrapped-pip
1414
, flit
15+
, cython
1516
}:
1617

1718
let
@@ -20,7 +21,7 @@ let
2021
wheel-specific = import ./build-python-package-wheel.nix { };
2122
common = import ./build-python-package-common.nix { inherit python bootstrapped-pip; };
2223
mkPythonDerivation = import ./mk-python-derivation.nix {
23-
inherit lib config python wrapPython setuptools unzip ensureNewerSourcesForZipFilesHook toPythonModule namePrefix;
24+
inherit cython lib config python wrapPython setuptools unzip ensureNewerSourcesForZipFilesHook toPythonModule namePrefix;
2425
};
2526
in
2627

‎pkgs/development/interpreters/python/mk-python-derivation.nix

+7
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
# Whether the derivation provides a Python module or not.
1111
, toPythonModule
1212
, namePrefix
13+
, cython
1314
}:
1415

1516
{ name ? "${attrs.pname}-${attrs.version}"
@@ -50,6 +51,9 @@
5051
# However, some packages do provide executables with extensions, and thus bytecode is generated.
5152
, removeBinBytecode ? true
5253

54+
# Compile Python code to native using Cython
55+
, cythonize ? false
56+
5357
, meta ? {}
5458

5559
, passthru ? {}
@@ -76,6 +80,7 @@ toPythonModule (python.stdenv.mkDerivation (builtins.removeAttrs attrs [
7680
buildInputs = [ wrapPython ]
7781
++ lib.optional (lib.hasSuffix "zip" (attrs.src.name or "")) unzip
7882
++ lib.optional catchConflicts setuptools # If we no longer propagate setuptools
83+
++ lib.optional cythonize cython
7984
++ buildInputs
8085
++ pythonPath;
8186

@@ -99,6 +104,8 @@ toPythonModule (python.stdenv.mkDerivation (builtins.removeAttrs attrs [
99104
# If this happens, something went wrong with the dependencies specs.
100105
# Intentionally kept in a subdirectory, see catch_conflicts/README.md.
101106
${python.interpreter} ${./catch_conflicts}/catch_conflicts.py
107+
'' + lib.optionalString cythonize ''
108+
cythonize -ik $out/${python.sitePackages}/**/*.py
102109
'' + attrs.postFixup or '''';
103110

104111
meta = {

‎pkgs/development/python-modules/pytoml/default.nix

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ buildPythonPackage rec {
1919
sha256 = "1ip71yqxnyi4jhw5x1q7a0za61ndhpfh0vbx08jfv0w4ayng6rgv";
2020
};
2121

22+
cythonize = true;
23+
2224
meta = with stdenv.lib; {
2325
description = "A TOML parser/writer for Python";
2426
homepage = https://github.com/avakar/pytoml;

‎pkgs/top-level/python-packages.nix

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ let
5757
# We want Python libraries to be named like e.g. "python3.6-${name}"
5858
inherit namePrefix;
5959
inherit toPythonModule;
60+
cython = self.cython;
6061
}));
6162

6263
buildPythonApplication = makeOverridablePythonPackage ( makeOverridable (callPackage ../development/interpreters/python/build-python-package.nix {

0 commit comments

Comments
 (0)
Please sign in to comment.