fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
21 lines
283 B
Nix
21 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
|
|
];
|
|
}
|