diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2020-06-28 23:50:42 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2020-06-28 23:50:42 +0200 |
commit | 98145307f7f040605589d33f83c3758612a95fc9 (patch) | |
tree | 98f4a3f4f5c439147cc4cb60ceac6b635c78b1ef /gnu | |
parent | 4e47c8fcf09aa57132f5203a5c72cdf1fe576646 (diff) | |
download | guix-98145307f7f040605589d33f83c3758612a95fc9.tar.gz |
gnu: python-xlib: Fix native input.
* gnu/packages/python-xyz.scm (python-xlib)[native-inputs]: Replace python2-setuptools-scm with python-setuptools-scm.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-xyz.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 7c5db14859..f7ef5da62f 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -7398,7 +7398,7 @@ falling into the Python interpreter.") #t)))))) (native-inputs `(("python-mock" ,python-mock) - ("python2-setuptools-scm" ,python2-setuptools-scm) + ("python-setuptools-scm" ,python-setuptools-scm) ("python-six" ,python-six) ("xorg-server" ,xorg-server))) (home-page "https://github.com/python-xlib/python-xlib") |