pythonPackages.nix-kernel: disable on Python 2
Signed-off-by: Masanori Ogino <167209+omasanori@users.noreply.github.com>
This commit is contained in:
parent
7543833ccf
commit
719cfc6cf0
@ -1,6 +1,7 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, isPy3k
|
||||
, pexpect
|
||||
, notebook
|
||||
, nix
|
||||
@ -10,6 +11,8 @@ buildPythonPackage rec {
|
||||
pname = "nix-kernel";
|
||||
version = "unstable-2020-04-26";
|
||||
|
||||
disabled = !isPy3k;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "GTrunSec";
|
||||
repo = "nix-kernel";
|
||||
|
Loading…
Reference in New Issue
Block a user