mach-nix/tests/test_remove_unwanted_deps.nix

19 lines
451 B
Nix
Raw Normal View History

2021-05-15 09:08:54 +00:00
{
2021-06-09 06:11:17 +00:00
baseArgsMkPython ? {},
baseArgsBuildPythonPackage ? {},
2021-05-15 09:08:54 +00:00
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)
2021-06-09 06:11:17 +00:00
mach-nix.mkPython (baseArgsMkPython // {
2021-05-15 09:08:54 +00:00
python = "python39";
requirements = ''
librosa==0.8.0
'';
providers.soundfile = "sdist";
providers._default = "wheel,sdist,nixpkgs";
2021-06-09 06:11:17 +00:00
})