pythonPackages.pytest-virtualenv: 1.6.0 -> 1.7.0
This commit is contained in:
parent
9f446bd8d0
commit
a8d09312b3
@ -1,20 +1,20 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchPypi
|
{ 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 {
|
buildPythonPackage rec {
|
||||||
pname = "pytest-virtualenv";
|
pname = "pytest-virtualenv";
|
||||||
version = "1.6.0";
|
version = "1.7.0";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "d281725d10848773cb2b495d1255dd0a42fc9179e34a274c22e1c35837721f19";
|
sha256 = "03w2zz3crblj1p6i8nq17946hbn3zqp9z7cfnifw47hi4a4fww12";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ pytest_3 pytestcov mock cmdline ];
|
checkInputs = [ pytest pytestcov mock cmdline ];
|
||||||
propagatedBuildInputs = [ pytest-fixture-config pytest-shutil ];
|
propagatedBuildInputs = [ pytest-fixture-config pytest-shutil virtualenv ];
|
||||||
checkPhase = '' py.test tests/unit '';
|
checkPhase = '' py.test tests/unit '';
|
||||||
|
|
||||||
nativeBuildInputs = [ pytest_3 ];
|
nativeBuildInputs = [ pytest ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
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.";
|
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.";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user