My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/nix-kernel/default.nix

48 lines
1.0 KiB

{ 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 ];
};
}