ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pytest-server-fixtures / default.nix
blob7de68cadbb1e3fda0199076fe804c3fee259ef39
1 { lib, buildPythonPackage, fetchPypi
2 , pytest, pytest-shutil, pytest-fixture-config, psutil
3 , requests, future, retry }:
5 buildPythonPackage rec {
6   pname = "pytest-server-fixtures";
7   version = "1.7.0";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "07vdv3y89qzv89ws0y48h92yplqsx208b9cizx80w644dazb398g";
12   };
14   buildInputs = [ pytest ];
15   propagatedBuildInputs = [ pytest-shutil pytest-fixture-config psutil requests future retry ];
17   # RuntimeError: Unable to find a free server number to start Xvfb
18   doCheck = false;
20   meta = with lib; {
21     description = "Extensible server fixures for py.test";
22     homepage  = "https://github.com/manahl/pytest-plugins";
23     license = licenses.mit;
24     maintainers = with maintainers; [ ];
25   };