linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pytest-server-fixtures / default.nix
blobca3c9a37c1a9063e1f6a0a8a814aa75f00ca53e6
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; [ nand0p ];
25   };