nixpkgs/pkgs/development/python-modules/pytest-xvfb/default.nix
2019-11-28 16:36:20 +10:30

29 lines
568 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytest
, virtual-display
}:
buildPythonPackage rec {
pname = "pytest-xvfb";
version = "1.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "a7544ca8d0c7c40db4b40d7a417a7b071c68d6ef6bdf9700872d7a167302f979";
};
propagatedBuildInputs = [
pytest
virtual-display
];
meta = with lib; {
description = "A pytest plugin to run Xvfb for tests";
homepage = "https://github.com/The-Compiler/pytest-xvfb";
license = licenses.mit;
maintainers = with maintainers; [ costrouc ];
};
}