depot/third_party/nixpkgs/pkgs/development/python-modules/pluggy/tests.nix

22 lines
283 B
Nix
Raw Normal View History

{
buildPythonPackage,
pluggy,
pytestCheckHook,
}:
buildPythonPackage {
pname = "pluggy-tests";
inherit (pluggy) version;
format = "other";
inherit (pluggy) src;
dontBuild = true;
dontInstall = true;
nativeCheckInputs = [
pluggy
pytestCheckHook
];
}