14 buildPythonPackage rec {
15 pname = "pytest-services";
19 inherit pname version;
20 sha256 = "2da740487d08ea63dfdf718f5d4ba11e590c99ddf5481549edebf7a3a42ca536";
28 buildInputs = [ pytest ];
30 propagatedBuildInputs = [
34 ] ++ lib.optional (!isPy3k) subprocess32;
36 # no tests in PyPI tarball
39 pythonImportsCheck = [ "pytest_services" ];
42 description = "Services plugin for pytest testing framework";
43 homepage = "https://github.com/pytest-dev/pytest-services";
44 license = licenses.mit;
45 maintainers = with maintainers; [ dotlambda ];