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

17 lines
405 B
Nix

{
baseArgsMkPython ? {},
baseArgsBuildPythonPackage ? {},
mach-nix ? import ../. {},
...
}:
with builtins;
# if removing dependency doesn't work this build would raise:
# Could not find a version that satisfies the requirement packaging (from sphinx)
mach-nix.mkPython (baseArgsMkPython // {
python = "python39";
requirements = ''
librosa==0.8.0
'';
providers.soundfile = "sdist";
})