mach-nix/tests/test_jupyterlab_nixpkgs.nix

14 lines
236 B
Nix
Raw Permalink 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 // {
requirements = ''
jupyterlab
'';
providers.jupyterlab = "nixpkgs";
2021-06-09 06:11:17 +00:00
})