2018-04-03 10:56:35 +00:00
|
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
|
|
|
|
, pytest, pytestcov, mock, cmdline, pytest-fixture-config, pytest-shutil }:
|
|
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
|
pname = "pytest-virtualenv";
|
2018-04-04 18:15:48 +00:00
|
|
|
|
version = "1.3.0";
|
2018-04-03 10:56:35 +00:00
|
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
|
inherit pname version;
|
2018-04-04 18:15:48 +00:00
|
|
|
|
sha256 = "8d8a0b9b57f5efb7db6457c1f57347e35fe332979ecefe592d5324430ae3ed7f";
|
2018-04-03 10:56:35 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
buildInputs = [ pytest pytestcov mock cmdline ];
|
|
|
|
|
propagatedBuildInputs = [ pytest-fixture-config pytest-shutil ];
|
|
|
|
|
checkPhase = '' py.test tests/unit '';
|
|
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
|
};
|
|
|
|
|
}
|