forked from mirrors/nixpkgs
python3Packages.janus: fix missing dep
This commit is contained in:
parent
e87bd4c03e
commit
84479ea577
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue