nixpkgs/pkgs/development/python-modules/pluggy/tests.nix
2024-05-22 17:32:03 +02:00

22 lines
283 B
Nix

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