lol

pytest-virtualenv: init pytest-virtualenv-1.1.0

Tested on Linux
- python 2.7
- python 3.5

authored by

Fernando J Pando and committed by
Frederik Rietdijk
e800ba8d bea6b4b3

+20
+20
pkgs/top-level/python-packages.nix
··· 4889 4889 }; 4890 4890 }); 4891 4891 4892 + pytest-virtualenv = buildPythonPackage rec { 4893 + name = "${pname}-${version}"; 4894 + pname = "pytest-virtualenv"; 4895 + version = "1.1.0"; 4896 + src = pkgs.fetchurl { 4897 + url = "mirror://pypi/p/${pname}/${name}.tar.gz"; 4898 + sha256 = "093f5fa479ee6201e48db367c307531dc8b800609b0c3ddca9c01e0fd466a669"; 4899 + }; 4900 + buildInputs = with self; [ pytestcov mock cmdline ]; 4901 + propagatedBuildInputs = with self; [ pytest-fixture-config pytest-shutil pytest ]; 4902 + checkPhase = '' py.test tests/unit ''; 4903 + meta = { 4904 + 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."; 4905 + homepage = https://github.com/manahl/pytest-plugins; 4906 + license = licenses.mit; 4907 + maintainers = with maintainers; [ ryansydnor ]; 4908 + platforms = platforms.all; 4909 + }; 4910 + }; 4911 + 4892 4912 pytest_xdist = buildPythonPackage rec { 4893 4913 name = "pytest-xdist-1.8"; 4894 4914