lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.jupyter-c-kernel: init at 1.2.2

authored by

Chris Ostrouchov and committed by
Jon
eacff247 2147589c

+36
+34
pkgs/development/python-modules/jupyter-c-kernel/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , ipykernel 5 + , gcc 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "jupyter-c-kernel"; 10 + version = "1.2.2"; 11 + 12 + src = fetchPypi { 13 + pname = "jupyter_c_kernel"; 14 + inherit version; 15 + sha256 = "e4b34235b42761cfc3ff08386675b2362e5a97fb926c135eee782661db08a140"; 16 + }; 17 + 18 + postPatch = '' 19 + substituteInPlace jupyter_c_kernel/kernel.py \ 20 + --replace "'gcc'" "'${gcc}/bin/gcc'" 21 + ''; 22 + 23 + propagatedBuildInputs = [ ipykernel ]; 24 + 25 + # no tests in repository 26 + doCheck = false; 27 + 28 + meta = with lib; { 29 + description = "Minimalistic C kernel for Jupyter"; 30 + homepage = "https://github.com/brendanrius/jupyter-c-kernel/"; 31 + license = licenses.mit; 32 + maintainers = [ maintainers.costrouc ]; 33 + }; 34 + }
+2
pkgs/top-level/python-packages.nix
··· 3299 3299 3300 3300 jupyter = callPackage ../development/python-modules/jupyter { }; 3301 3301 3302 + jupyter-c-kernel = callPackage ../development/python-modules/jupyter-c-kernel { }; 3303 + 3302 3304 jupyter_console = if pythonOlder "3.5" then 3303 3305 callPackage ../development/python-modules/jupyter_console/5.nix { } 3304 3306 else