22 lines
290 B
Nix
22 lines
290 B
Nix
|
{ buildPythonPackage
|
||
|
, tomli
|
||
|
, pytestCheckHook
|
||
|
, python-dateutil
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "tomli-tests";
|
||
|
inherit (tomli) version;
|
||
|
|
||
|
src = tomli.testsout;
|
||
|
|
||
|
dontBuild = true;
|
||
|
dontInstall = true;
|
||
|
|
||
|
checkInputs = [
|
||
|
pytestCheckHook
|
||
|
python-dateutil
|
||
|
tomli
|
||
|
];
|
||
|
}
|