biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / pytest-server-fixtures / default.nix
blobeddc3fc06fa94a0f439724d84ab2734878307a23
2   lib,
3   buildPythonPackage,
4   future,
5   psutil,
6   pytest,
7   pytest-shutil,
8   pytest-fixture-config,
9   requests,
10   retry,
11   six,
12   setuptools,
15 buildPythonPackage {
16   pname = "pytest-server-fixtures";
17   inherit (pytest-fixture-config) version src patches;
18   pyproject = true;
20   postPatch = ''
21     cd pytest-server-fixtures
22   '';
24   build-system = [ setuptools ];
26   buildInputs = [ pytest ];
28   dependencies = [
29     future
30     psutil
31     pytest-shutil
32     pytest-fixture-config
33     requests
34     retry
35     six
36   ];
38   # Don't run intergration tests
39   doCheck = false;
41   meta = with lib; {
42     description = "Extensible server fixures for py.test";
43     homepage = "https://github.com/manahl/pytest-plugins";
44     license = licenses.mit;
45     maintainers = [ ];
46   };