mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-29 16:24:10 +00:00
20 lines
278 B
Nix
20 lines
278 B
Nix
{
|
|
lzallright,
|
|
buildPythonPackage,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
inherit (lzallright) version src;
|
|
pname = "lzallright-tests";
|
|
format = "other";
|
|
|
|
dontBuild = true;
|
|
dontInstall = true;
|
|
|
|
nativeCheckInputs = [
|
|
lzallright
|
|
pytestCheckHook
|
|
];
|
|
}
|