about summary refs log tree commit diff
path: root/pkgs/development/python-modules/lzallright/tests.nix
blob: 1093fc3c79e981293637df674bcbbcf468aa79ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ lzallright, buildPythonPackage, pytestCheckHook }:

buildPythonPackage {
  inherit (lzallright) version src;
  pname = "lzallright-tests";
  format = "other";

  dontBuild = true;
  dontInstall = true;

  nativeCheckInputs = [
    lzallright
    pytestCheckHook
  ];
}