about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-localserver/default.nix
blob: a3f57ff40e7a3b0b800003ba78a43f412e17bcb2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ buildPythonPackage
, lib
, fetchPypi
, werkzeug
}:

buildPythonPackage rec {
  pname = "pytest-localserver";
  version = "0.5.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "ef6f04193dc0f7e8df5b27b3a8834318fa12eaf025436d2a99afff1b73cde761";
  };

  propagatedBuildInputs = [ werkzeug ];

  # all tests access network: does not work in sandbox
  doCheck = false;
  pythonImportsCheck = [ "pytest_localserver" ];

  meta = with lib; {
    description = "Plugin for the pytest testing framework to test server connections locally";
    homepage = "https://pypi.python.org/pypi/pytest-localserver";
    license = licenses.mit;
    maintainers = with maintainers; [ siriobalmelli ];
  };
}