poetry2nix/vendor/pyproject.nix/pep599.nix
adisbladis c061e4c469 Add vendored copy of pyproject.nix
This will be used for a lot of primitives currently implemented in poetry2nix.
2023-10-26 12:38:32 +13:00

20 lines
466 B
Nix

_:
{
/* Map Nixpkgs CPU values to target machines known to be supported for manylinux* wheels (a.k.a. `uname -m`),
in nixpkgs found under the attribute `stdenv.targetPlatform.parsed.cpu.name`
Example:
# legacyAliases.powerpc64
"ppc64"
*/
manyLinuxTargetMachines = {
x86_64 = "x86_64";
i686 = "i686";
aarch64 = "aarch64";
armv7l = "armv7l";
powerpc64 = "ppc64";
powerpc64le = "ppc64le";
s390x = "s390x";
};
}