about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pluggy/tests.nix
blob: 8eec02011202e09bf9473f6d724a66f47a165ced (plain) (blame)
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;
  format = "other";

  inherit (pluggy) src;

  dontBuild = true;
  dontInstall = true;

  nativeCheckInputs = [
    pluggy
    pytestCheckHook
  ];
}