nixpkgs/pkgs/development/python-modules/lzallright/tests.nix
2024-05-22 17:32:03 +02:00

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
];
}