biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / pluggy / tests.nix
blob8eec02011202e09bf9473f6d724a66f47a165ced
2   buildPythonPackage,
3   pluggy,
4   pytestCheckHook,
5 }:
7 buildPythonPackage {
8   pname = "pluggy-tests";
9   inherit (pluggy) version;
10   format = "other";
12   inherit (pluggy) src;
14   dontBuild = true;
15   dontInstall = true;
17   nativeCheckInputs = [
18     pluggy
19     pytestCheckHook
20   ];