From 84479ea577dfb10c5f328f7aa4751069c23c99f0 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Mon, 29 Nov 2021 00:03:31 -0800 Subject: [PATCH] python3Packages.janus: fix missing dep --- pkgs/development/python-modules/janus/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/janus/default.nix b/pkgs/development/python-modules/janus/default.nix index f46ef2e62f5c..c8a9efdb54f8 100644 --- a/pkgs/development/python-modules/janus/default.nix +++ b/pkgs/development/python-modules/janus/default.nix @@ -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