nixpkgs/pkgs/development/python-modules/pluggy/tests.nix
2023-07-28 12:13:23 +02:00

21 lines
278 B
Nix

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