mach-nix/tests/test_extras.nix

14 lines
258 B
Nix
Raw Normal View History

{
2021-06-09 06:11:17 +00:00
baseArgsMkPython ? {},
baseArgsBuildPythonPackage ? {},
mach-nix ? import ../. {},
...
}:
with builtins;
2021-06-09 06:11:17 +00:00
mach-nix.mkPython (baseArgsMkPython // {
providers._default = "wheel,sdist,nixpkgs";
requirements = ''
dask[complete]==2.22.0
'';
2021-06-09 06:11:17 +00:00
})