mach-nix/tests/test_py38_cp38_wheel.nix

14 lines
185 B
Nix
Raw Normal View History

{
mach-nix ? import ../. {
python = "python38";
},
...
}:
with builtins;
2020-10-07 16:23:52 +00:00
mach-nix.mkPython {
requirements = ''
numba==0.50.1
'';
providers = { numba = "wheel"; };
}