9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
15 lines
271 B
Nix
15 lines
271 B
Nix
{ lzallright, buildPythonPackage, pytestCheckHook }:
|
|
|
|
buildPythonPackage {
|
|
inherit (lzallright) version src;
|
|
pname = "lzallright-tests";
|
|
format = "other";
|
|
|
|
dontBuild = true;
|
|
dontInstall = true;
|
|
|
|
nativeCheckInputs = [
|
|
lzallright
|
|
pytestCheckHook
|
|
];
|
|
}
|