python3Packages.nuitka: 2.6.9 -> 2.7.15 (#436900)

authored by Weijia Wang and committed by GitHub 8910f371 b50da098

+5 -2
+5 -2
pkgs/development/python-modules/nuitka/default.nix
··· 1 1 { 2 2 lib, 3 + stdenv, 3 4 buildPythonPackage, 4 5 fetchFromGitHub, 5 6 isPyPy, ··· 12 13 13 14 buildPythonPackage rec { 14 15 pname = "nuitka"; 15 - version = "2.6.9"; 16 + version = "2.7.15"; 16 17 pyproject = true; 17 18 18 19 src = fetchFromGitHub { 19 20 owner = "Nuitka"; 20 21 repo = "Nuitka"; 21 22 rev = version; 22 - hash = "sha256-QKJAMDVXO78VQ0P+nuuQ4dxCKEJLtcqCinJYs018rTA="; 23 + hash = "sha256-o+rXk8Qh9SeBpuSppPBap9TL69gy9ag7PCArFSNSv7g="; 23 24 }; 24 25 25 26 build-system = [ ··· 49 50 description = "Python compiler with full language support and CPython compatibility"; 50 51 license = licenses.asl20; 51 52 homepage = "https://nuitka.net/"; 53 + # never built on darwin since first introduction in nixpkgs 54 + broken = stdenv.hostPlatform.isDarwin; 52 55 }; 53 56 }