-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[feature] get wheel from PYPI? #106
Comments
Shouldn't |
[feeluown]
src.pypi = "feeluown"
fetch.pypi = "feeluown" { fetchgit, fetchurl, fetchFromGitHub }:
{
feeluown = {
pname = "feeluown";
version = "3.8.2";
src = fetchurl {
url = "https://pypi.io/packages/source/f/feeluown/feeluown-3.8.2.tar.gz";
sha256 = "sha256-V2yzpkmjRkipZOvQGB2mYRhiiEly6QPrTOMJ7BmyWBQ=";
};
};
} How to { fetchgit, fetchurl, fetchFromGitHub }:
{
feeluown = {
pname = "feeluown";
version = "3.8.2";
src = fetchurl {
url = "the url of wheel";
sha256 = "";
};
};
} |
Sorry, did you mean to fetch a wheel instead of the source code for a python package? Do we know the url of the wheel given the package name? |
https://wiki.archlinux.org/title/Python_package_guidelines#Source:
|
Now fetch.pypi only can get the sdist. How can we get wheel?
The text was updated successfully, but these errors were encountered: