mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 17:53:37 +00:00
22 lines
283 B
Nix
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
|
|
];
|
|
}
|