2024-05-15 15:35:15 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
future,
|
|
|
|
psutil,
|
|
|
|
pytest,
|
|
|
|
pytest-shutil,
|
|
|
|
pytest-fixture-config,
|
|
|
|
requests,
|
|
|
|
retry,
|
|
|
|
six,
|
|
|
|
setuptools,
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pytest-server-fixtures";
|
2024-05-15 15:35:15 +00:00
|
|
|
inherit (pytest-fixture-config) version src;
|
|
|
|
pyproject = true;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2024-05-15 15:35:15 +00:00
|
|
|
sourceRoot = "${src.name}/pytest-server-fixtures";
|
|
|
|
|
|
|
|
build-system = [ setuptools ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildInputs = [ pytest ];
|
|
|
|
|
2024-05-15 15:35:15 +00:00
|
|
|
dependencies = [
|
|
|
|
future
|
|
|
|
psutil
|
|
|
|
pytest-shutil
|
|
|
|
pytest-fixture-config
|
|
|
|
requests
|
|
|
|
retry
|
|
|
|
six
|
|
|
|
];
|
|
|
|
|
|
|
|
# Don't run intergration tests
|
2020-04-24 23:36:52 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Extensible server fixures for py.test";
|
2024-05-15 15:35:15 +00:00
|
|
|
homepage = "https://github.com/manahl/pytest-plugins";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.mit;
|
2021-05-20 23:08:51 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|