pythonPackages.pytest-xvfb: init at 1.2.0
This commit is contained in:
parent
248fe74a8a
commit
7fcc79d4b7
2 changed files with 30 additions and 0 deletions
28
pkgs/development/python-modules/pytest-xvfb/default.nix
Normal file
28
pkgs/development/python-modules/pytest-xvfb/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue