You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to use dream2nix on a python project and it's working great for the most part. However there's 1 dependency in my project that it can't seem to handle.
importgcsfs
ModuleNotFoundError: No module named 'gcsfs'
It's defined in my pyproject.toml as:
"fsspec[gcs] >=2023.12.2",
I've also tried manually adding the dependency
"gcsfs >=2023.12.2",
I do see it captured in my lock.json under "fetchPipMetadata" but it's never available for import. FWIW I also had this problem when trying to use it with pyinstaller and had to add a custom hook because it has hidden imports that pyinstaller couldn't automatically detect.
The text was updated successfully, but these errors were encountered:
Howdy 👋
I'm trying to use dream2nix on a python project and it's working great for the most part. However there's 1 dependency in my project that it can't seem to handle.
ModuleNotFoundError: No module named 'gcsfs'
It's defined in my
pyproject.toml
as:"fsspec[gcs] >=2023.12.2",
I've also tried manually adding the dependency
"gcsfs >=2023.12.2",
I do see it captured in my
lock.json
under"fetchPipMetadata"
but it's never available for import. FWIW I also had this problem when trying to use it withpyinstaller
and had to add a custom hook because it has hidden imports thatpyinstaller
couldn't automatically detect.The text was updated successfully, but these errors were encountered: