Files
nixpkgs/pkgs/development/python-modules/nix-kernel/default.nix
T
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

51 lines
1.0 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
isPy3k,
pexpect,
notebook,
nix,
}:
buildPythonPackage rec {
pname = "nix-kernel";
version = "unstable-2020-04-26";
format = "setuptools";
disabled = !isPy3k;
src = fetchFromGitHub {
owner = "GTrunSec";
repo = "nix-kernel";
rev = "dfa42d0812d508ded99f690ee1a83281d900a3ec";
sha256 = "1lf4rbbxjmq9h6g3wrdzx3v3dn1bndfmiybxiy0sjavgb6lzc8kq";
};
postPatch = ''
substituteInPlace nix-kernel/kernel.py \
--replace "'nix'" "'${nix}/bin/nix'" \
--replace "'nix repl'" "'${nix}/bin/nix repl'"
substituteInPlace setup.py \
--replace "cmdclass={'install': install_with_kernelspec}," ""
'';
propagatedBuildInputs = [
pexpect
notebook
];
# no tests in repo
doCheck = false;
pythonImportsCheck = [ "nix-kernel" ];
meta = with lib; {
description = "Simple jupyter kernel for nix-repl";
homepage = "https://github.com/GTrunSec/nix-kernel";
license = licenses.mit;
maintainers = [ ];
};
}