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