DavHau

Results 328 comments of DavHau

Thanks that's amazing. For the crawler and mach-nix to use it, it would have to be integrated in: [./lib/extractor/default.nix](https://github.com/DavHau/mach-nix/blob/master/lib/extractor/default.nix). The relevant methods are: - `extractor-fast`: which is imported and used...

Mariadb provides wheel for windows only and the sdist package could not be analyzed my mach-nix' crawler due to: ``` /bin/sh: mariadb_config: not found Traceback (most recent call last): File...

A fix for this could be to include the fixes from `./mach_nix/fixes.nix` into the crawler already.

I added some function to mach-nix for fetching pypi sources. Therefore you can now include mariadb like this: ```nix let mach-nix = import (builtins.fetchGit { url = "https://github.com/DavHau/mach-nix/"; rev =...

The problem here is, that mariadb is built using python 3.8, but then included into a python 3.7 based environment. I should probably catch that case with an error message....

Maria db is now in nixpkgs and installs fine from that provider

Oh thanks for that. This should definitely be fixed in mach-nix.

> Do you have any sense of whether it makes sense to try to use packaging.tags.sys_tags() in mach-nix to fix this? I don't think that doing this is a good...

Actually python packages from nixpkgs should not be allowed via pkgsExtra. Mach-nix should raise a specific error in this case, but it seems like it doesn't. So this is the...

I just tested this on the current version and there doesn't seem to be any issues anymore. Could you check again? If it still doesn't work, could you please provide...