nixpkgs/pkgs/development/python-modules/lzallright/tests.nix
2023-06-19 15:08:58 +02:00

16 lines
271 B
Nix

{ lzallright, buildPythonPackage, pytestCheckHook }:
buildPythonPackage {
inherit (lzallright) version src;
pname = "lzallright-tests";
format = "other";
dontBuild = true;
dontInstall = true;
nativeCheckInputs = [
lzallright
pytestCheckHook
];
}