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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
278 B
Nix
Raw Normal View History

2023-06-29 06:55:18 +00:00
{ buildPythonPackage
, pluggy
, pytestCheckHook
}:
buildPythonPackage {
pname = "pluggy-tests";
inherit (pluggy) version;
format = "other";
inherit (pluggy) src;
dontBuild = true;
dontInstall = true;
nativeCheckInputs = [
pluggy
pytestCheckHook
];
}