d5f4a57cbf
GitOrigin-RevId: ce5e4a6ef2e59d89a971bc434ca8ca222b9c7f5e
20 lines
278 B
Nix
20 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
|
|
];
|
|
}
|