Merge pull request #51914 from dotlambda/home-assistant-python37

home-assistant: use python37
This commit is contained in:
Franz Pletz
2018-12-19 19:32:11 +00:00
committed by GitHub
3 changed files with 5 additions and 8 deletions

View File

@@ -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; {