9 buildPythonPackage rec {
10 pname = "pytest-localserver";
12 format = "setuptools";
14 disabled = pythonOlder "3.6";
17 inherit pname version;
18 hash = "sha256-ZlacNP7zGldQsW7/0c0SiKepC1kVXQBef5FqzNPe5PE=";
21 propagatedBuildInputs = [
26 # all tests access network: does not work in sandbox
29 pythonImportsCheck = [
34 description = "Plugin for the pytest testing framework to test server connections locally";
35 homepage = "https://github.com/pytest-dev/pytest-localserver";
36 changelog = "https://github.com/pytest-dev/pytest-localserver/blob/v${version}/CHANGES";
37 license = licenses.mit;
38 maintainers = with maintainers; [ siriobalmelli ];