diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2022-04-07 16:48:12 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-04-11 15:39:29 +0200 |
commit | 8499f14a215a7ba020e8e87292e66de631027b08 (patch) | |
tree | 49016ec8b0183a6a68ba23a725b84f6189ce6850 /gnu/packages/python-xyz.scm | |
parent | a5412de56ef5462958f6009331d967556aedd11d (diff) | |
download | guix-8499f14a215a7ba020e8e87292e66de631027b08.tar.gz |
gnu: Add python-plac.
* gnu/packages/python-xyz.scm (python-plac): New variable.
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 55705ab2ea..12a79d8450 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -9909,6 +9909,35 @@ more advanced mathematics.") multiprecision arithmetic.") (license license:lgpl3+))) +(define-public python-plac + (package + (name "python-plac") + (version "1.3.5") + (source + (origin + (method url-fetch) + (uri (pypi-uri "plac" version)) + (sha256 + (base32 "1410h6jw1ksi24kb55xzkwqzba2qqjwiga1s354bf3s5s1jdig9q")))) + (build-system python-build-system) + (arguments + '(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'fix-tkinter + (lambda _ + (substitute* "plac_tk.py" + (("from Tkinter import Tk") + "from tkinter import Tk") + (("from ScrolledText import ScrolledText") + "from tkinter.scrolledtext import ScrolledText"))))))) + (native-inputs + `(("python-tkinter" ,python "tk"))) + (home-page "https://github.com/ialbert/plac") + (synopsis "Command line arguments parser") + (description "This package can generate command line parameters from +function signatures.") + (license license:bsd-3))) + (define-public python-sympy (package (name "python-sympy") |