about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2019-06-01 23:37:37 +0100
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2019-06-18 11:11:16 +0200
commita8d09312b367eaa932c05d10d4bb91f269d497f4 (patch)
tree499dd9bcd2b3e94bcb202730781c5b673b435669 /pkgs
parent9f446bd8d0099d224d46b093231f972c0640bdf3 (diff)
downloadnixlib-a8d09312b367eaa932c05d10d4bb91f269d497f4.tar
nixlib-a8d09312b367eaa932c05d10d4bb91f269d497f4.tar.gz
nixlib-a8d09312b367eaa932c05d10d4bb91f269d497f4.tar.bz2
nixlib-a8d09312b367eaa932c05d10d4bb91f269d497f4.tar.lz
nixlib-a8d09312b367eaa932c05d10d4bb91f269d497f4.tar.xz
nixlib-a8d09312b367eaa932c05d10d4bb91f269d497f4.tar.zst
nixlib-a8d09312b367eaa932c05d10d4bb91f269d497f4.zip
pythonPackages.pytest-virtualenv: 1.6.0 -> 1.7.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/pytest-virtualenv/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/pytest-virtualenv/default.nix b/pkgs/development/python-modules/pytest-virtualenv/default.nix
index ec6441870563..0e8add5417be 100644
--- a/pkgs/development/python-modules/pytest-virtualenv/default.nix
+++ b/pkgs/development/python-modules/pytest-virtualenv/default.nix
@@ -1,20 +1,20 @@
 { stdenv, buildPythonPackage, fetchPypi
-, pytest_3, pytestcov, mock, cmdline, pytest-fixture-config, pytest-shutil }:
+, pytest, pytestcov, mock, cmdline, pytest-fixture-config, pytest-shutil, virtualenv }:
 
 buildPythonPackage rec {
   pname = "pytest-virtualenv";
-  version = "1.6.0";
+  version = "1.7.0";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "d281725d10848773cb2b495d1255dd0a42fc9179e34a274c22e1c35837721f19";
+    sha256 = "03w2zz3crblj1p6i8nq17946hbn3zqp9z7cfnifw47hi4a4fww12";
   };
 
-  checkInputs = [ pytest_3 pytestcov mock cmdline ];
-  propagatedBuildInputs = [ pytest-fixture-config pytest-shutil ];
+  checkInputs = [ pytest pytestcov mock cmdline ];
+  propagatedBuildInputs = [ pytest-fixture-config pytest-shutil virtualenv ];
   checkPhase = '' py.test tests/unit '';
 
-  nativeBuildInputs = [ pytest_3 ];
+  nativeBuildInputs = [ pytest ];
 
   meta = with stdenv.lib; {
     description = "Create a Python virtual environment in your test that cleans up on teardown. The fixture has utility methods to install packages and list what’s installed.";