depot/third_party/nixpkgs/pkgs/development/python-modules/pluggy/tests.nix

21 lines
278 B
Nix
Raw Normal View History

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