Merge pull request #120843 from wamserma/nuitka-6-14

pythonModules.Nuitka: 0.6.8.4 -> 0.6.14.5

authored by

Sandro and committed by
GitHub
f9a4ee80 6d481459

+11 -10
+11 -10
pkgs/development/python-modules/nuitka/default.nix
··· 1 { lib, stdenv 2 , buildPythonPackage 3 - , fetchurl 4 , vmprof 5 , pyqt4 6 , isPyPy 7 , pkgs 8 }: 9 10 - let 11 - # scons is needed but using it requires Python 2.7 12 - # Therefore we create a separate env for it. 13 - scons = pkgs.python27.withPackages(ps: [ pkgs.scons ]); 14 - in buildPythonPackage rec { 15 - version = "0.6.8.4"; 16 pname = "Nuitka"; 17 18 # Latest version is not yet on PyPi 19 - src = fetchurl { 20 - url = "https://github.com/kayhayen/Nuitka/archive/${version}.tar.gz"; 21 - sha256 = "0awhwksnmqmbciimqmd11wygp7bnq57khcg4n9r4ld53s147rmqm"; 22 }; 23 24 checkInputs = [ vmprof pyqt4 ]; 25 nativeBuildInputs = [ scons ]; 26 27 postPatch = '' 28 patchShebangs tests/run-tests
··· 1 { lib, stdenv 2 , buildPythonPackage 3 + , fetchFromGitHub 4 , vmprof 5 , pyqt4 6 , isPyPy 7 , pkgs 8 + , scons 9 + , chrpath 10 }: 11 12 + buildPythonPackage rec { 13 + version = "0.6.14.5"; 14 pname = "Nuitka"; 15 16 # Latest version is not yet on PyPi 17 + src = fetchFromGitHub { 18 + owner = "kayhayen"; 19 + repo = "Nuitka"; 20 + rev = version; 21 + sha256 = "08kcp22zdgp25kk4bp56z196mn6bdi3z4x0q2y9vyz0ywfzp9zap"; 22 }; 23 24 checkInputs = [ vmprof pyqt4 ]; 25 nativeBuildInputs = [ scons ]; 26 + propagatedBuildInputs = [ chrpath ]; 27 28 postPatch = '' 29 patchShebangs tests/run-tests