159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
47 lines
771 B
Nix
47 lines
771 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
future,
|
|
psutil,
|
|
pytest,
|
|
pytest-shutil,
|
|
pytest-fixture-config,
|
|
requests,
|
|
retry,
|
|
six,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
pname = "pytest-server-fixtures";
|
|
inherit (pytest-fixture-config) version src patches;
|
|
pyproject = true;
|
|
|
|
postPatch = ''
|
|
cd pytest-server-fixtures
|
|
'';
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
buildInputs = [ pytest ];
|
|
|
|
dependencies = [
|
|
future
|
|
psutil
|
|
pytest-shutil
|
|
pytest-fixture-config
|
|
requests
|
|
retry
|
|
six
|
|
];
|
|
|
|
# Don't run intergration tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Extensible server fixures for py.test";
|
|
homepage = "https://github.com/manahl/pytest-plugins";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|