mach-nix/tests/test_py38_cp38_wheel.nix
2020-08-18 13:18:53 +07:00

9 lines
173 B
Nix

let
mach-nix = import ../.;
in mach-nix.mkPython {
requirements = ''
numba==0.50.1
'';
providers = { numba = "wheel"; };
python = mach-nix.nixpkgs.python38;
}