It is a feature request. it would be nice if cattrs would support Generic classes definition, i.e. ```python T = TypeVar("T") @attr.dataclass class A(Generic[T]): a: T = attr.ib() @attr.dataclass class B: a_inst: A[int] = attr.ib() ```