summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/lzallright/tests.nix
blob: 37947ce6eaab60f55134012d00331e7e92339dbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  lzallright,
  buildPythonPackage,
  pytestCheckHook,
}:

buildPythonPackage {
  inherit (lzallright) version src;
  pname = "lzallright-tests";
  pyproject = false;

  dontBuild = true;
  dontInstall = true;

  nativeCheckInputs = [
    lzallright
    pytestCheckHook
  ];
}