719cfc6cf0
Signed-off-by: Masanori Ogino <167209+omasanori@users.noreply.github.com>
49 lines
1.0 KiB
Nix
49 lines
1.0 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, isPy3k
|
|
, pexpect
|
|
, notebook
|
|
, nix
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "nix-kernel";
|
|
version = "unstable-2020-04-26";
|
|
|
|
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 = with maintainers; [ costrouc ];
|
|
};
|
|
}
|