summary refs log tree commit diff
path: root/pkgs/applications/version-management
diff options
context:
space:
mode:
authorMarek Mahut <marek.mahut@gmail.com>2019-08-17 22:29:21 +0200
committerMarek Mahut <marek.mahut@gmail.com>2019-08-17 23:10:37 +0200
commit92571e8a55584af739c8a2458b82efc27b30a7d3 (patch)
treea63177aa8437357cb68cb8505d562d69bc6c8ff7 /pkgs/applications/version-management
parentc3e1e64e4c54ffa06d12be2c499c0acdfd9faf92 (diff)
downloadnixpkgs-92571e8a55584af739c8a2458b82efc27b30a7d3.tar
nixpkgs-92571e8a55584af739c8a2458b82efc27b30a7d3.tar.gz
nixpkgs-92571e8a55584af739c8a2458b82efc27b30a7d3.tar.bz2
nixpkgs-92571e8a55584af739c8a2458b82efc27b30a7d3.tar.lz
nixpkgs-92571e8a55584af739c8a2458b82efc27b30a7d3.tar.xz
nixpkgs-92571e8a55584af739c8a2458b82efc27b30a7d3.tar.zst
nixpkgs-92571e8a55584af739c8a2458b82efc27b30a7d3.zip
nbstripout: moving buildInputs to checkInputs
Fixes https://hydra.nixos.org/build/98602011
Diffstat (limited to 'pkgs/applications/version-management')
-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 18fb672226f..1a6eda6a04e 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.