depot/third_party/nixpkgs/pkgs/development/python-modules/tomli/tests.nix
Default email 88abffb7d2 Project import generated by Copybara.
GitOrigin-RevId: bc9b956714ed6eac5f8888322aac5bc41389defa
2021-09-18 12:52:07 +02:00

21 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
];
}