Possible reason: replit has manually blocked my package, but I don’t see this being the case
EDIT: it is clearly here, that is to say, it is a pypi package
EDIT 2: after trying to install via poetry, it seems replit is experiencing some python installation hitches?
The current project's Python requirement (>=3.10.0, <3.11) is not compatible with som e of the required packages Python requirement: replit-bot requires Python >=3.8.0, <3.9, so it will not be satisfied for Python >=3.10.0, <3.11
So you have python 3.10 and your package needs python 3.8 (>=3.8 <3.9)
Update
Your first problem can also be simply solved. When you install a python package on replit it goes through a replit proxy, not directly pypi. because of this some new packages have not been updated on the proxy yet. The solution is to wait.
Hey there what ended up happening is that replit updated to 3.10 repls and my packager was made before that change on replit so the code had a python requirement of the very, very specific 3.8 only which is why it did not run, thanks for your help