summary refs log tree commit diff
path: root/pkgs/applications/version-management/nbstripout/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/version-management/nbstripout/default.nix')
-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 bb2b4b3e0b8..8b2b15a0078 100644
--- a/pkgs/applications/version-management/nbstripout/default.nix
+++ b/pkgs/applications/version-management/nbstripout/default.nix
@@ -8,7 +8,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.