11 buildPythonPackage rec {
12 pname = "pytest-localserver";
16 disabled = pythonOlder "3.6";
19 pname = "pytest_localserver";
21 hash = "sha256-+voCggk37n050B11D9Bc6xl/xfPIlfgbysOCbbCQh+0=";
24 build-system = [ setuptools-scm ];
26 dependencies = [ werkzeug ];
28 optional-dependencies = {
32 # All tests access network: does not work in sandbox
35 pythonImportsCheck = [ "pytest_localserver" ];
38 description = "Plugin for the pytest testing framework to test server connections locally";
39 homepage = "https://github.com/pytest-dev/pytest-localserver";
40 changelog = "https://github.com/pytest-dev/pytest-localserver/blob/v${version}/CHANGES";
41 license = licenses.mit;
42 maintainers = with maintainers; [ siriobalmelli ];