python.pkgs.ruamel_yaml: do not depend on typing

The dependency was removed in version 0.14.9.
This commit is contained in:
Robert Schütz 2018-12-12 14:35:32 +01:00
parent f9b0781938
commit cee5f2b622

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