about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMarek Mahut <marek.mahut@gmail.com>2019-08-19 17:44:36 +0200
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2019-08-19 19:27:40 +0200
commit78f1387c2e93fc21c1e6a464dc6a8f18a89dd24a (patch)
tree0ca641f24d6cea34d141c61c1e5450a4d70e0858 /pkgs
parentee14abe0628af1fbcebba0fd0a801165dea66fb7 (diff)
downloadnixlib-78f1387c2e93fc21c1e6a464dc6a8f18a89dd24a.tar
nixlib-78f1387c2e93fc21c1e6a464dc6a8f18a89dd24a.tar.gz
nixlib-78f1387c2e93fc21c1e6a464dc6a8f18a89dd24a.tar.bz2
nixlib-78f1387c2e93fc21c1e6a464dc6a8f18a89dd24a.tar.lz
nixlib-78f1387c2e93fc21c1e6a464dc6a8f18a89dd24a.tar.xz
nixlib-78f1387c2e93fc21c1e6a464dc6a8f18a89dd24a.tar.zst
nixlib-78f1387c2e93fc21c1e6a464dc6a8f18a89dd24a.zip
pythonPackages.mixpanel: moving pytest and mock to checkInputs
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/mixpanel/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/mixpanel/default.nix b/pkgs/development/python-modules/mixpanel/default.nix
index 6a99913c6c8b..e770eedbfc31 100644
--- a/pkgs/development/python-modules/mixpanel/default.nix
+++ b/pkgs/development/python-modules/mixpanel/default.nix
@@ -17,7 +17,7 @@ buildPythonPackage rec {
     sha256 = "0yq1bcsjzsz7yz4rp69izsdn47rvkld4wki2xmapp8gg2s9i8709";
   };
 
-  buildInputs = [ pytest mock ];
+  checkInputs = [ pytest mock ];
   propagatedBuildInputs = [ six ];
   checkPhase = "py.test tests.py";