mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-06 09:12:35 +03:00
33 lines
609 B
Nix
33 lines
609 B
Nix
|
{ lib
|
||
|
, buildPythonPackage
|
||
|
, fetchPypi
|
||
|
, setuptools_scm
|
||
|
, pytest
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "pytest-forked";
|
||
|
version = "0.2";
|
||
|
name = "${pname}-${version}";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "e4500cd0509ec4a26535f7d4112a8cc0f17d3a41c29ffd4eab479d2a55b30805";
|
||
|
};
|
||
|
|
||
|
buildInputs = [ pytest setuptools_scm ];
|
||
|
|
||
|
# Do not function
|
||
|
doCheck = false;
|
||
|
|
||
|
checkPhase = ''
|
||
|
py.test testing
|
||
|
'';
|
||
|
|
||
|
meta = {
|
||
|
description = "Run tests in isolated forked subprocesses";
|
||
|
homepage = https://github.com/pytest-dev/pytest-forked;
|
||
|
license = lib.licenses.mit;
|
||
|
};
|
||
|
|
||
|
}
|