2018-04-03 11:56:35 +01:00
|
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
2019-02-15 09:08:27 +00:00
|
|
|
|
, pytest_3, pytestcov, mock, cmdline, pytest-fixture-config, pytest-shutil }:
|
2018-04-03 11:56:35 +01:00
|
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
|
pname = "pytest-virtualenv";
|
2019-02-14 07:37:28 +00:00
|
|
|
|
version = "1.6.0";
|
2018-04-03 11:56:35 +01:00
|
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
|
inherit pname version;
|
2019-02-14 07:37:28 +00:00
|
|
|
|
sha256 = "d281725d10848773cb2b495d1255dd0a42fc9179e34a274c22e1c35837721f19";
|
2018-04-03 11:56:35 +01:00
|
|
|
|
};
|
|
|
|
|
|
2019-02-15 09:08:27 +00:00
|
|
|
|
checkInputs = [ pytest_3 pytestcov mock cmdline ];
|
2018-04-03 11:56:35 +01:00
|
|
|
|
propagatedBuildInputs = [ pytest-fixture-config pytest-shutil ];
|
|
|
|
|
checkPhase = '' py.test tests/unit '';
|
|
|
|
|
|
2019-02-15 09:08:27 +00:00
|
|
|
|
nativeBuildInputs = [ pytest_3 ];
|
|
|
|
|
|
2018-04-03 11:56:35 +01:00
|
|
|
|
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.";
|
|
|
|
|
homepage = https://github.com/manahl/pytest-plugins;
|
|
|
|
|
license = licenses.mit;
|
|
|
|
|
maintainers = with maintainers; [ ryansydnor ];
|
|
|
|
|
};
|
|
|
|
|
}
|