5ed07317e9
Entirely find-and-replace based. A few usages that would cause rebuilds if changed remain. This PR should have 0 rebuilds.
20 lines
279 B
Nix
20 lines
279 B
Nix
{
|
|
lzallright,
|
|
buildPythonPackage,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
inherit (lzallright) version src;
|
|
pname = "lzallright-tests";
|
|
pyproject = false;
|
|
|
|
dontBuild = true;
|
|
dontInstall = true;
|
|
|
|
nativeCheckInputs = [
|
|
lzallright
|
|
pytestCheckHook
|
|
];
|
|
}
|