about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2018-12-19 19:32:11 +0000
committerGitHub <noreply@github.com>2018-12-19 19:32:11 +0000
commit65dfc2b272819760f7c7adf848ccff36390c0425 (patch)
tree4c456b2481997dd0c4d175daccea85d36d31977a /pkgs/development
parentdf90fdf62b556ef9106aebc6930cb8931c486a96 (diff)
parent00a9057f750ddd512311b8627913dbec61a23d88 (diff)
downloadnixlib-65dfc2b272819760f7c7adf848ccff36390c0425.tar
nixlib-65dfc2b272819760f7c7adf848ccff36390c0425.tar.gz
nixlib-65dfc2b272819760f7c7adf848ccff36390c0425.tar.bz2
nixlib-65dfc2b272819760f7c7adf848ccff36390c0425.tar.lz
nixlib-65dfc2b272819760f7c7adf848ccff36390c0425.tar.xz
nixlib-65dfc2b272819760f7c7adf848ccff36390c0425.tar.zst
nixlib-65dfc2b272819760f7c7adf848ccff36390c0425.zip
Merge pull request #51914 from dotlambda/home-assistant-python37
home-assistant: use python37
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/ruamel_yaml/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/ruamel_yaml/default.nix b/pkgs/development/python-modules/ruamel_yaml/default.nix
index 619b2fb5eb33..e10005fc2058 100644
--- a/pkgs/development/python-modules/ruamel_yaml/default.nix
+++ b/pkgs/development/python-modules/ruamel_yaml/default.nix
@@ -2,7 +2,6 @@
 , buildPythonPackage
 , fetchPypi
 , ruamel_base
-, typing
 , ruamel_ordereddict
 , isPy3k
 }:
@@ -19,7 +18,7 @@ buildPythonPackage rec {
   # Tests cannot load the module to test
   doCheck = false;
 
-  propagatedBuildInputs = [ ruamel_base typing ]
+  propagatedBuildInputs = [ ruamel_base ]
     ++ stdenv.lib.optional (!isPy3k) ruamel_ordereddict;
 
   meta = with stdenv.lib; {