python-pam icon indicating copy to clipboard operation
python-pam copied to clipboard

Is `six` a missing dependency somehow?

Open pmorch opened this issue 7 months ago • 0 comments

Hi, I can see that six does seem to already be a dependency (something I don't really understand), but it seems to still be missing from 2.0.2:

$ mkdir /tmp/venv

$ cd /tmp/venv

$ python3 -m venv .

$ ./bin/pip install python-pam
Collecting python-pam
  Using cached python_pam-2.0.2-py3-none-any.whl (10 kB)
Installing collected packages: python-pam
Successfully installed python-pam-2.0.2

$ ./bin/python -c 'import pam ; print("hi")'
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/tmp/venv/lib/python3.11/site-packages/pam/__init__.py", line 9, in <module>
    from .__internals import PAM_ACCT_EXPIRED
  File "/tmp/venv/lib/python3.11/site-packages/pam/__internals.py", line 2, in <module>
    import six
ModuleNotFoundError: No module named 'six'

$ ./bin/pip install six
Collecting six
  Using cached six-1.16.0-py2.py3-none-any.whl (11 kB)
Installing collected packages: six
Successfully installed six-1.16.0

$ ./bin/python -c 'import pam ; print("hi")'
hi

pmorch avatar Nov 17 '23 09:11 pmorch