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

20 lines
278 B
Nix
Raw Normal View History

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