about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aiodns
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-02-14 15:17:09 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2019-02-17 14:40:51 +0100
commit45716f553dc42c31e2f3e2360772a17bc53d0d5d (patch)
tree03583e9a6d535914e6768ccc227cfd68a9ee1af4 /pkgs/development/python-modules/aiodns
parent9a36041027a0c29ff0fbc0d80d185eddb0d6eb3c (diff)
python.pkgs.aiodns: add typing to propagatedBuildInputs
Diffstat (limited to 'pkgs/development/python-modules/aiodns')
-rw-r--r--pkgs/development/python-modules/aiodns/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/aiodns/default.nix b/pkgs/development/python-modules/aiodns/default.nix
index 154d98de1c6ea..f7ac236a520d4 100644
--- a/pkgs/development/python-modules/aiodns/default.nix
+++ b/pkgs/development/python-modules/aiodns/default.nix
@@ -1,5 +1,5 @@
 { stdenv, buildPythonPackage, fetchPypi
-, isPy33, isPy27, isPyPy, python, pycares, asyncio, trollius }:
+, isPy33, isPy27, isPyPy, python, pycares, typing, asyncio, trollius }:
 
 buildPythonPackage rec {
   pname = "aiodns";
@@ -10,8 +10,7 @@ buildPythonPackage rec {
     sha256 = "d67e14b32176bcf3ff79b5d47c466011ce4adeadfa264f7949da1377332a0449";
   };
 
-  propagatedBuildInputs = with stdenv.lib; [ pycares ]
-    ++ optional isPy33 asyncio
+  propagatedBuildInputs = with stdenv.lib; [ pycares typing ]
     ++ optional (isPy27 || isPyPy) trollius;
 
   checkPhase = ''