1{ buildPythonPackage
2, tomli
3, pytestCheckHook
4, python-dateutil
5}:
6
7buildPythonPackage rec {
8 pname = "tomli-tests";
9 inherit (tomli) version;
10
11 src = tomli.testsout;
12
13 dontBuild = true;
14 dontInstall = true;
15
16 checkInputs = [
17 pytestCheckHook
18 python-dateutil
19 tomli
20 ];
21}