2021-02-05 17:12:51 +00:00
|
|
|
|
{ lib, buildPythonPackage, fetchPypi
|
2021-07-24 12:14:16 +00:00
|
|
|
|
, pytest, pytest-cov, mock, cmdline, pytest-fixture-config, pytest-shutil, virtualenv }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
|
pname = "pytest-virtualenv";
|
|
|
|
|
version = "1.7.0";
|
|
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
|
inherit pname version;
|
|
|
|
|
sha256 = "03w2zz3crblj1p6i8nq17946hbn3zqp9z7cfnifw47hi4a4fww12";
|
|
|
|
|
};
|
|
|
|
|
|
2021-07-24 12:14:16 +00:00
|
|
|
|
checkInputs = [ pytest pytest-cov mock cmdline ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
propagatedBuildInputs = [ pytest-fixture-config pytest-shutil virtualenv ];
|
2021-02-05 17:12:51 +00:00
|
|
|
|
checkPhase = "py.test tests/unit ";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pytest ];
|
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
|
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 ];
|
|
|
|
|
};
|
|
|
|
|
}
|