lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python.pkgs.pytest-forked: init at 0.2

+35
+33
pkgs/development/python-modules/pytest-forked/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , setuptools_scm 5 + , pytest 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "pytest-forked"; 10 + version = "0.2"; 11 + name = "${pname}-${version}"; 12 + 13 + src = fetchPypi { 14 + inherit pname version; 15 + sha256 = "e4500cd0509ec4a26535f7d4112a8cc0f17d3a41c29ffd4eab479d2a55b30805"; 16 + }; 17 + 18 + buildInputs = [ pytest setuptools_scm ]; 19 + 20 + # Do not function 21 + doCheck = false; 22 + 23 + checkPhase = '' 24 + py.test testing 25 + ''; 26 + 27 + meta = { 28 + description = "Run tests in isolated forked subprocesses"; 29 + homepage = https://github.com/pytest-dev/pytest-forked; 30 + license = lib.licenses.mit; 31 + }; 32 + 33 + }
+2
pkgs/top-level/python-packages.nix
··· 4223 4223 }; 4224 4224 }; 4225 4225 4226 + pytest-forked = callPackage ../development/python-modules/pytest-forked { }; 4227 + 4226 4228 pytest-rerunfailures = buildPythonPackage rec { 4227 4229 name = "${pname}-${version}"; 4228 4230 pname = "pytest-rerunfailures";