python310Packages.dill: add passthru tests

Adds apache-beam and datasets to be tested when dill is updated. These
two packages broke when updating dill from 0.3.5.1 to 0.3.6.
This commit is contained in:
Theodore Ni 2022-11-15 10:57:08 -08:00
parent 8ecf6aac3b
commit 61aa1a2664
No known key found for this signature in database
GPG key ID: 48B67583BDDD4474

View file

@ -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; {