mach-nix/tests/test_passthru_select_pypi_pname.nix
2021-06-09 13:11:17 +07:00

13 lines
283 B
Nix

# This depends on python-dateutil which triggered an infinite recursion by get_passthru
{
baseArgsMkPython ? {},
baseArgsBuildPythonPackage ? {},
mach-nix ? import ../. {},
...
}:
with builtins;
mach-nix.mkPython (baseArgsMkPython // {
requirements = ''
bokeh
'';
})