Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pluggy / tests.nix
blobdc6e16e7b2d7980d52cab560a4c0ad0ddf1cc915
1 { buildPythonPackage
2 , pluggy
3 , pytestCheckHook
4 }:
6 buildPythonPackage {
7   pname = "pluggy-tests";
8   inherit (pluggy) version;
9   format = "other";
11   inherit (pluggy) src;
13   dontBuild = true;
14   dontInstall = true;
16   nativeCheckInputs = [
17     pluggy
18     pytestCheckHook
19   ];