about summary refs log tree commit diff
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-08-17 17:49:55 -0400
committerGitHub <noreply@github.com>2019-08-17 17:49:55 -0400
commit9399e2bf592d017f686fd8fcdf9025fed72c4493 (patch)
treec0494f2ea6c1be1e1c2733c976a2fe70b8eef28b
parent6af48a84d425e43ade44651d22a59373c2fb9756 (diff)
parent92571e8a55584af739c8a2458b82efc27b30a7d3 (diff)
Merge pull request #66793 from mmahut/nbstripout
nbstripout: moving buildInputs to checkInputs
-rw-r--r--pkgs/applications/version-management/nbstripout/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/version-management/nbstripout/default.nix b/pkgs/applications/version-management/nbstripout/default.nix
index 18fb672226f2c..1a6eda6a04e92 100644
--- a/pkgs/applications/version-management/nbstripout/default.nix
+++ b/pkgs/applications/version-management/nbstripout/default.nix
@@ -9,7 +9,8 @@ buildPythonApplication rec {
   # Mercurial should be added as a build input but because it's a Python
   # application, it would mess up the Python environment. Thus, don't add it
   # here, instead add it to PATH when running unit tests
-  buildInputs = [ pytest pytest-flake8 pytest-cram git pytestrunner ];
+  checkInputs = [ pytest pytest-flake8 pytest-cram git ];
+  nativeBuildInputs = [ pytestrunner ];
   propagatedBuildInputs = [ ipython nbformat ];
 
   # PyPI source is currently missing tests. Thus, use GitHub instead.