mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
pythonPackages.jupyter_core: add test runner, disable tests
This commit is contained in:
parent
7598a25130
commit
0a9e7a5fe8
1 changed files with 9 additions and 1 deletions
|
@ -10213,7 +10213,15 @@ in modules // {
|
|||
sha256 = "96a68a3b1d018ff7776270b26b7cb0cfd7a18a53ef2061421daff435707d198c";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [traitlets];
|
||||
buildInputs = with self; [ pytest mock ];
|
||||
propagatedBuildInputs = with self; [ ipython traitlets];
|
||||
|
||||
checkPhase = ''
|
||||
py.test
|
||||
'';
|
||||
|
||||
# Several tests fail due to being in a chroot
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Jupyter core package. A base package on which Jupyter projects rely";
|
||||
|
|
Loading…
Reference in a new issue