diff options
author | Mathieu Othacehe <m.othacehe@gmail.com> | 2019-10-19 15:31:11 +0200 |
---|---|---|
committer | Mathieu Othacehe <m.othacehe@gmail.com> | 2019-10-19 15:56:24 +0200 |
commit | 741f98b3f1d66252ce0122aed9f800da6bdaa8f7 (patch) | |
tree | b5693a1f7a3feb79926542dacadccb5c3e393406 /gnu | |
parent | f0935460464d70d1f3b87dfd9ec8751b166fa679 (diff) | |
download | patches-741f98b3f1d66252ce0122aed9f800da6bdaa8f7.tar patches-741f98b3f1d66252ce0122aed9f800da6bdaa8f7.tar.gz |
gnu: python2-astroid: Fix build.
* gnu/packages/python-xyz.scm (python2-astroid)[propagated-inputs]:
Remove python-typed-ast.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-xyz.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index c8fbf9c98e..0c1479d411 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -12617,7 +12617,8 @@ builds partial trees by inspecting living objects.") ,python2-backports-functools-lru-cache) ("python2-enum34" ,python2-enum34) ("python2-singledispatch" ,python2-singledispatch) - ,@(package-propagated-inputs base)))))) + ,@(alist-delete "python-typed-ast" + (package-propagated-inputs base))))))) (define-public python-isort (package |