python3Packages.pytest-services: fix build

This commit is contained in:
Jonathan Ringer 2020-11-29 13:37:21 -08:00 committed by Frederik Rietdijk
parent 23db404965
commit b31bc72bc3

View file

@ -5,7 +5,9 @@
, requests
, psutil
, pytest
, setuptools_scm
, subprocess32
, toml
, zc_lockfile
}:
@ -18,6 +20,11 @@ buildPythonPackage rec {
sha256 = "2da740487d08ea63dfdf718f5d4ba11e590c99ddf5481549edebf7a3a42ca536";
};
nativeBuildInputs = [
setuptools_scm
toml
];
propagatedBuildInputs = [
requests
psutil
@ -28,6 +35,8 @@ buildPythonPackage rec {
# no tests in PyPI tarball
doCheck = false;
pythonImportsCheck = [ "pytest_services" ];
meta = with lib; {
description = "Services plugin for pytest testing framework";
homepage = "https://github.com/pytest-dev/pytest-services";