repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
python312Packages.llm-gguf: init at 0.2 (#364926)
[NixPkgs.git]
/
pkgs
/
development
/
python-modules
/
lzallright
/
tests.nix
blob
f28dd124278a9777ef2091514edc57e3df7a55ee
1
{
2
lzallright,
3
buildPythonPackage,
4
pytestCheckHook,
5
}:
6
7
buildPythonPackage {
8
inherit (lzallright) version src;
9
pname = "lzallright-tests";
10
format = "other";
11
12
dontBuild = true;
13
dontInstall = true;
14
15
nativeCheckInputs = [
16
lzallright
17
pytestCheckHook
18
];
19
}