summary refs log blame commit diff
path: root/pkgs/development/python-modules/pluggy/tests.nix
blob: dc6e16e7b2d7980d52cab560a4c0ad0ddf1cc915 (plain) (tree)



















                           
{ buildPythonPackage
, pluggy
, pytestCheckHook
}:

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

  inherit (pluggy) src;

  dontBuild = true;
  dontInstall = true;

  nativeCheckInputs = [
    pluggy
    pytestCheckHook
  ];
}