python311Packages.nuitka: 1.8.4 -> 2.1.4

Diff: https://github.com/Nuitka/Nuitka/compare/1.8.4...2.1.4
This commit is contained in:
natsukium 2024-04-02 23:08:34 +09:00
parent 87eef3e3c4
commit e4ee223e61
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53

View File

@ -7,27 +7,28 @@
, python3
, setuptools
, zstandard
, wheel
}:
buildPythonPackage rec {
pname = "nuitka";
version = "1.8.4";
version = "2.1.4";
pyproject = true;
src = fetchFromGitHub {
owner = "Nuitka";
repo = "Nuitka";
rev = version;
hash = "sha256-spa3V9KEjqmwnHSuxLLIu9hJk5PrRwNyOw72sfxBVKo=";
hash = "sha256-bV5zTYwhR/3dTM1Ij+aC6TbcPODZ5buwQi7xN8axZi0=";
};
# default lto off for darwin
patches = [ ./darwin-lto.patch ];
nativeBuildInputs = [ setuptools ];
build-system = [ setuptools wheel ];
nativeCheckInputs = [ ccache ];
propagatedBuildInputs = [
dependencies = [
ordered-set
zstandard
];