1{
2 buildPythonPackage,
3 pluggy,
4 pytestCheckHook,
5}:
6
7buildPythonPackage {
8 pname = "pluggy-tests";
9 inherit (pluggy) version;
10 format = "other";
11
12 inherit (pluggy) src;
13
14 dontBuild = true;
15 dontInstall = true;
16
17 nativeCheckInputs = [
18 pluggy
19 pytestCheckHook
20 ];
21}