Usage with Xonsh Shell
See original GitHub issueHello!
Would it be possible to implement a mach-nix.mkXonsh
option, which will install optional modules for the xonsh
python-based shell? Or instead, could anyone show me how to implement it myself?
Thank you kindly for your consideration!
Issue Analytics
- State:
- Created 3 years ago
- Comments:22 (22 by maintainers)
Top Results From Across the Web
The Xonsh Shell — Python-powered shell
The xonsh shell is a Python-powered, cross-platform, Unix-gazing shell language and command ... Xonsh is meant for the daily use of experts and...
Read more >Xonsh Shell Combines the Best of Bash Shell and Python ...
It combines Python and bash shell in a way that you can run Python commands directly in the shell. You can even combine...
Read more >Xonsh — a Python-powered shell - Medium
A language that allows us to use Python in the shell and the shell in Python ... The xonsh language has shell primitives...
Read more >Xonsh - GitHub
The language is a superset of Python 3.6+ with additional shell primitives. xonsh (pronounced conch) is meant for the daily use of experts...
Read more >Xonsh: a Python and Bash Shell - Fun Tech Projects
Using Bash. Xonsh uses Python first, so an example with ls (the Bash list command):. 1. 2.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
extra_pkgs
is not available forbuildPythonPackage/Applicaiton
, only formkPython
. So I changed the expression to first build the xonsh package, and then combine it with the extra package usingmkPython
:BTW, for specifying extras for normal requirements just use the same notation like in pip. For example
requests[socks]
to get requests with extrassocks
.Oh yeah. I should update the readme. Thanks
Excatly. I didn’t try this myself but I assume this must work.