nixpkgs/pkgs/development/python-modules/jupyter-c-kernel/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

36 lines
731 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, ipykernel
, gcc
}:
buildPythonPackage rec {
pname = "jupyter-c-kernel";
version = "1.2.2";
format = "setuptools";
src = fetchPypi {
pname = "jupyter_c_kernel";
inherit version;
sha256 = "e4b34235b42761cfc3ff08386675b2362e5a97fb926c135eee782661db08a140";
};
postPatch = ''
substituteInPlace jupyter_c_kernel/kernel.py \
--replace "'gcc'" "'${gcc}/bin/gcc'"
'';
propagatedBuildInputs = [ ipykernel ];
# no tests in repository
doCheck = false;
meta = with lib; {
description = "Minimalistic C kernel for Jupyter";
homepage = "https://github.com/brendanrius/jupyter-c-kernel/";
license = licenses.mit;
maintainers = [ ];
};
}