python3Packages.janus: fix missing dep

This commit is contained in:
Jonathan Ringer 2021-11-29 00:03:31 -08:00
parent e87bd4c03e
commit 84479ea577
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0

View File

@ -1,4 +1,6 @@
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, pythonOlder, pytest-asyncio }:
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, pythonOlder, pytest-asyncio
, typing-extensions
}:
buildPythonPackage rec {
pname = "janus";
@ -11,6 +13,10 @@ buildPythonPackage rec {
disabled = pythonOlder "3.6";
propagatedBuildInputs = [
typing-extensions
];
checkInputs = [ pytest-asyncio pytestCheckHook ];
# also fails upstream: https://github.com/aio-libs/janus/pull/258