summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-check
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-03-12 23:20:19 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2021-03-13 09:09:52 +0100
commit60a10e0989cc4e92332104e23c749c97a5b0608a (patch)
tree942d647f87cc7b0ace71ccd07c79bd24750f1a2b /pkgs/development/python-modules/pytest-check
parent970aea96fa0eff6aab9ef2559b8e29a07851b1c3 (diff)
downloadnixpkgs-60a10e0989cc4e92332104e23c749c97a5b0608a.tar
nixpkgs-60a10e0989cc4e92332104e23c749c97a5b0608a.tar.gz
nixpkgs-60a10e0989cc4e92332104e23c749c97a5b0608a.tar.bz2
nixpkgs-60a10e0989cc4e92332104e23c749c97a5b0608a.tar.lz
nixpkgs-60a10e0989cc4e92332104e23c749c97a5b0608a.tar.xz
nixpkgs-60a10e0989cc4e92332104e23c749c97a5b0608a.tar.zst
nixpkgs-60a10e0989cc4e92332104e23c749c97a5b0608a.zip
pythonPackages.pytest*: Move pytest to buildInputs to allow easy overriding pytest
Diffstat (limited to 'pkgs/development/python-modules/pytest-check')
-rw-r--r--pkgs/development/python-modules/pytest-check/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pytest-check/default.nix b/pkgs/development/python-modules/pytest-check/default.nix
index 4c3e9dd96fe..a7729545873 100644
--- a/pkgs/development/python-modules/pytest-check/default.nix
+++ b/pkgs/development/python-modules/pytest-check/default.nix
@@ -15,7 +15,7 @@ buildPythonPackage rec {
     sha256 = "1i01i5ab06ic11na13gcacrlcs2ab6rmaii0yz0x06z5ynnljn6s";
   };
 
-  propagatedBuildInputs = [ pytest ];
+  buildInputs = [ pytest ];
   checkInputs = [ pytestCheckHook ];
 
   meta = with lib; {