Re: guix pypi-ls

2022-11-06 Thread zimoun
Hi, On Sat, 05 Nov 2022 at 12:47, jgart wrote: > I have this one off script I call `pypi-ls` for listing tar files on > standard output from pypi to see if they contain tests: > > #!/bin/env sh > > exec wget -qO- $1 | tar xvz Well, I think you can avoid the extraction. Something like: exec

Re: guix pypi-ls

2022-11-05 Thread jgart
On Sat, 05 Nov 2022 12:47:19 -0500 jgart wrote: > $ pypi-ls > https://files.pythonhosted.org/packages/e4/f9/c888a9cb6e959e7619262e21c17bf7d9afcba31a29120a8bc2de4242a488/pygls-0.13.0.tar.gz Ideally, I'd just give it the PyPi canoncial name as argument instead of that long path to the tar file.

guix pypi-ls

2022-11-05 Thread jgart
hi, I have this one off script I call `pypi-ls` for listing tar files on standard output from pypi to see if they contain tests: #!/bin/env sh exec wget -qO- $1 | tar xvz Would this feature/idea be useful to be integrated into the guix cli somehow? Maybe integrated into the pypi importer? Sho