mach-nix/tests/test_py38_cp38_wheel.nix

13 lines
180 B
Nix
Raw Permalink Normal View History

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