diff options
| author | Sandro <sandro.jaeckel@gmail.com> | 2022-11-16 01:59:20 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-16 01:59:20 +0100 |
| commit | b7b044143225db45867a72aeb48741a21acfba72 (patch) | |
| tree | 775249e2ac5270189250de15f659cb9de2baf18f | |
| parent | matcha-gtk-theme: 2022-06-07 -> 2022-11-15 (#201410) (diff) | |
| parent | python310Packages.dill: add passthru tests (diff) | |
| download | nixpkgs-b7b044143225db45867a72aeb48741a21acfba72.tar.gz | |
Merge pull request #201356 from tjni/dill-passthru
| -rw-r--r-- | pkgs/development/python-modules/dill/default.nix | 8 |
1 files changed, 8 insertions, 0 deletions
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; { |
