blob: fa08422670317a88fd5ab9d2b8d38a0538c02288 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
{
lib,
buildPythonPackage,
ccache,
fetchFromGitHub,
isPyPy,
ordered-set,
python,
setuptools,
zstandard,
wheel,
}:
buildPythonPackage rec {
pname = "nuitka";
version = "2.2.3";
pyproject = true;
src = fetchFromGitHub {
owner = "Nuitka";
repo = "Nuitka";
rev = version;
hash = "sha256-nKdCMgA92v9VsSgfktXDbSh3DyKsGlcTjpn0Y7u4rxU=";
};
# default lto off for darwin
patches = [ ./darwin-lto.patch ];
build-system = [
setuptools
wheel
];
nativeCheckInputs = [ ccache ];
dependencies = [
ordered-set
zstandard
];
checkPhase = ''
runHook preCheck
${python.interpreter} tests/basics/run_all.py search
runHook postCheck
'';
pythonImportsCheck = [ "nuitka" ];
# Requires CPython
disabled = isPyPy;
meta = with lib; {
description = "Python compiler with full language support and CPython compatibility";
license = licenses.asl20;
homepage = "https://nuitka.net/";
};
}
|