about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pluggy/tests.nix
blob: dc6e16e7b2d7980d52cab560a4c0ad0ddf1cc915 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ buildPythonPackage
, pluggy
, pytestCheckHook
}:

buildPythonPackage {
  pname = "pluggy-tests";
  inherit (pluggy) version;
  format = "other";

  inherit (pluggy) src;

  dontBuild = true;
  dontInstall = true;

  nativeCheckInputs = [
    pluggy
    pytestCheckHook
  ];
}