mach-nix/tests/test_py38_cp38_wheel.nix
2020-10-14 00:29:27 +07:00

13 lines
185 B
Nix

{
mach-nix ? import ../. {
python = "python38";
},
...
}:
with builtins;
mach-nix.mkPython {
requirements = ''
numba==0.50.1
'';
providers = { numba = "wheel"; };
}