linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pytest-virtualenv / default.nix
blob8ea981ba2e7a72621a45368199857e1df5c6ac68
1 { lib, buildPythonPackage, fetchPypi
2 , pytest, pytestcov, mock, cmdline, pytest-fixture-config, pytest-shutil, virtualenv }:
4 buildPythonPackage rec {
5   pname = "pytest-virtualenv";
6   version = "1.7.0";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "03w2zz3crblj1p6i8nq17946hbn3zqp9z7cfnifw47hi4a4fww12";
11   };
13   checkInputs = [ pytest pytestcov mock cmdline ];
14   propagatedBuildInputs = [ pytest-fixture-config pytest-shutil virtualenv ];
15   checkPhase = "py.test tests/unit ";
17   nativeBuildInputs = [ pytest ];
19   meta = with lib; {
20     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.";
21     homepage = "https://github.com/manahl/pytest-plugins";
22     license = licenses.mit;
23     maintainers = with maintainers; [ ryansydnor ];
24   };