pythonPackages.pytest-xvfb: init at 1.2.0

This commit is contained in:
Chris Ostrouchov 2019-07-25 11:05:02 -04:00 committed by Marcus Boyd
parent 248fe74a8a
commit 7fcc79d4b7
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ 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 ];
};
}

View file

@ -1165,6 +1165,8 @@ in {
pytest-xprocess = callPackage ../development/python-modules/pytest-xprocess { };
pytest-xvfb = callPackage ../development/python-modules/pytest-xvfb { };
pytmx = callPackage ../development/python-modules/pytmx { };
python-binance = callPackage ../development/python-modules/python-binance { };