summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2022-11-16 01:59:20 +0100
committerGitHub <noreply@github.com>2022-11-16 01:59:20 +0100
commitb7b044143225db45867a72aeb48741a21acfba72 (patch)
tree775249e2ac5270189250de15f659cb9de2baf18f
parentmatcha-gtk-theme: 2022-06-07 -> 2022-11-15 (#201410) (diff)
parentpython310Packages.dill: add passthru tests (diff)
downloadnixpkgs-b7b044143225db45867a72aeb48741a21acfba72.tar.gz
Merge pull request #201356 from tjni/dill-passthru
-rw-r--r--pkgs/development/python-modules/dill/default.nix8
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; {