summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-fixture-config
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2019-02-15 10:08:27 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2019-02-17 14:40:54 +0100
commitd2c3fd5af0022c612ce2cd4f274e09ab58ccc6fe (patch)
treefb42d34132de1274474bdb0661c1bbba8cbf1e0a /pkgs/development/python-modules/pytest-fixture-config
parent7397fa2a2775269aad995a620b23e500168e36d5 (diff)
downloadnixpkgs-d2c3fd5af0022c612ce2cd4f274e09ab58ccc6fe.tar
nixpkgs-d2c3fd5af0022c612ce2cd4f274e09ab58ccc6fe.tar.gz
nixpkgs-d2c3fd5af0022c612ce2cd4f274e09ab58ccc6fe.tar.bz2
nixpkgs-d2c3fd5af0022c612ce2cd4f274e09ab58ccc6fe.tar.lz
nixpkgs-d2c3fd5af0022c612ce2cd4f274e09ab58ccc6fe.tar.xz
nixpkgs-d2c3fd5af0022c612ce2cd4f274e09ab58ccc6fe.tar.zst
nixpkgs-d2c3fd5af0022c612ce2cd4f274e09ab58ccc6fe.zip
Python: fix outfall after setting `strictDeps = true;`
Diffstat (limited to 'pkgs/development/python-modules/pytest-fixture-config')
-rw-r--r--pkgs/development/python-modules/pytest-fixture-config/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/pytest-fixture-config/default.nix b/pkgs/development/python-modules/pytest-fixture-config/default.nix
index af599c86a44..e9ae311d496 100644
--- a/pkgs/development/python-modules/pytest-fixture-config/default.nix
+++ b/pkgs/development/python-modules/pytest-fixture-config/default.nix
@@ -1,5 +1,5 @@
 { stdenv, buildPythonPackage, fetchPypi
-, setuptools-git, pytest }:
+, setuptools-git, pytest_3 }:
 
 buildPythonPackage rec {
   pname = "pytest-fixture-config";
@@ -12,7 +12,7 @@ buildPythonPackage rec {
 
   nativeBuildInputs = [ setuptools-git ];
 
-  buildInputs = [ pytest ];
+  buildInputs = [ pytest_3 ];
 
   doCheck = false;