mach-nix/tests/test_py38_cp38_wheel.nix
2022-02-09 17:57:50 -07:00

12 lines
180 B
Nix

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