python312Packages.llm-gguf: init at 0.2 (#364926)
[NixPkgs.git] / pkgs / development / python-modules / lzallright / tests.nix
blobf28dd124278a9777ef2091514edc57e3df7a55ee
2   lzallright,
3   buildPythonPackage,
4   pytestCheckHook,
5 }:
7 buildPythonPackage {
8   inherit (lzallright) version src;
9   pname = "lzallright-tests";
10   format = "other";
12   dontBuild = true;
13   dontInstall = true;
15   nativeCheckInputs = [
16     lzallright
17     pytestCheckHook
18   ];