diff --git a/pkgs/development/python-modules/dill/default.nix b/pkgs/development/python-modules/dill/default.nix index ee54e80f3a6b..3caf068a1270 100644 --- a/pkgs/development/python-modules/dill/default.nix +++ b/pkgs/development/python-modules/dill/default.nix @@ -3,6 +3,10 @@ , fetchFromGitHub , python , setuptools + +# passthru tests +, apache-beam +, datasets }: buildPythonPackage rec { @@ -27,6 +31,10 @@ buildPythonPackage rec { runHook postCheck ''; + passthru.tests = { + inherit apache-beam datasets; + }; + pythonImportsCheck = [ "dill" ]; meta = with lib; {