nixpkgs/pkgs/development/python-modules/tomli/tests.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
];
}