mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 11:44:07 +00:00
21 lines
278 B
Nix
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
|
|
];
|
|
}
|