diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2020-01-06 09:35:27 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-01-06 09:35:27 +0200 |
commit | 26bb7fc627cb4839e7ed73f6b0784635bf5a10e1 (patch) | |
tree | 5a55726ad020b2d69cb6f22b321e9f18443db068 | |
parent | c83640728cc39edf8ef65a532b62c772f25ac9d3 (diff) | |
download | patches-26bb7fc627cb4839e7ed73f6b0784635bf5a10e1.tar patches-26bb7fc627cb4839e7ed73f6b0784635bf5a10e1.tar.gz |
gnu: python-urwidtrees: Don't use setuptools.
* gnu/packages/python-xyz.scm (python-urwidtrees)[arguments]: Build
without setuptools.
-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 eeb073e85c..56deb57a56 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -5632,7 +5632,8 @@ features useful for text console applications.") "1n1kpidvkdnsqyb82vlvk78gmly96kh8351lqxn2pzgwwns6fml2")))) (build-system python-build-system) (arguments - '(#:tests? #f)) ; no tests + '(#:use-setuptools? #f + #:tests? #f)) ; no tests (propagated-inputs `(("python-urwid" ,python-urwid))) (home-page "https://github.com/pazz/urwidtrees") (synopsis "Tree widgets for urwid") |