summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pluggy/tests.nix
blob: 25f1404067bfec0954563dff79981d22a1db5b16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  buildPythonPackage,
  pluggy,
  pytestCheckHook,
}:

buildPythonPackage {
  pname = "pluggy-tests";
  inherit (pluggy) version;
  pyproject = false;

  inherit (pluggy) src;

  dontBuild = true;
  dontInstall = true;

  nativeCheckInputs = [
    pluggy
    pytestCheckHook
  ];
}