16 buildPythonPackage rec {
17 pname = "pytest-subprocess";
21 disabled = pythonOlder "3.6";
23 src = fetchFromGitHub {
25 repo = "pytest-subprocess";
27 hash = "sha256-wEPIRWEwAiHSpcu9FMtkpAxqz64csT9AO27NDax3zNY=";
30 build-system = [ setuptools ];
32 buildInputs = [ pytest ];
43 pytestFlagsArray = [ "-W ignore::DeprecationWarning" ];
46 description = "Plugin to fake subprocess for pytest";
47 homepage = "https://github.com/aklajnert/pytest-subprocess";
48 changelog = "https://github.com/aklajnert/pytest-subprocess/blob/${version}/HISTORY.rst";
49 license = licenses.mit;
50 maintainers = with maintainers; [ dotlambda ];