Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / lzallright / tests.nix
blob1093fc3c79e981293637df674bcbbcf468aa79ad
1 { lzallright, buildPythonPackage, pytestCheckHook }:
3 buildPythonPackage {
4   inherit (lzallright) version src;
5   pname = "lzallright-tests";
6   format = "other";
8   dontBuild = true;
9   dontInstall = true;
11   nativeCheckInputs = [
12     lzallright
13     pytestCheckHook
14   ];