Files
nixpkgs/pkgs/development/python-modules/nuitka/default.nix
T
Martin Weinelt 097e351eee python3Packages.nuitka: 2.7.15 -> 2.8.10
This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:40 +01:00

57 lines
983 B
Nix

{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
isPyPy,
ordered-set,
python,
setuptools,
zstandard,
wheel,
}:
buildPythonPackage rec {
pname = "nuitka";
version = "2.8.10";
pyproject = true;
src = fetchFromGitHub {
owner = "Nuitka";
repo = "Nuitka";
tag = version;
hash = "sha256-+CevWpYvqY3SX3/QE7SPlbsFtXkdlNTg9m91VtZCHvM=";
};
build-system = [
setuptools
wheel
];
dependencies = [
ordered-set
zstandard
];
checkPhase = ''
runHook preCheck
${python.interpreter} tests/basics/run_all.py search
runHook postCheck
'';
pythonImportsCheck = [ "nuitka" ];
# Requires CPython
disabled = isPyPy;
meta = {
description = "Python compiler with full language support and CPython compatibility";
license = lib.licenses.asl20;
homepage = "https://nuitka.net/";
# never built on darwin since first introduction in nixpkgs
broken = stdenv.hostPlatform.isDarwin;
};
}