depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-server-fixtures/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

27 lines
780 B
Nix

{ lib, buildPythonPackage, fetchPypi
, pytest, pytest-shutil, pytest-fixture-config, psutil
, requests, future, retry }:
buildPythonPackage rec {
pname = "pytest-server-fixtures";
version = "1.7.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-xecz0gqNDnc8pRPjYOS6JkeVLqlCj6K9BVFsYoHqPOc=";
};
buildInputs = [ pytest ];
propagatedBuildInputs = [ pytest-shutil pytest-fixture-config psutil requests future retry ];
# RuntimeError: Unable to find a free server number to start Xvfb
doCheck = false;
meta = with lib; {
description = "Extensible server fixures for py.test";
homepage = "https://github.com/manahl/pytest-plugins";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}