mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-29 16:24:10 +00:00
python.pkgs.ruamel_yaml: do not depend on typing
The dependency was removed in version 0.14.9.
This commit is contained in:
parent
f9b0781938
commit
cee5f2b622
@ -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; {
|
||||
|
Loading…
Reference in New Issue
Block a user