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

12 lines
214 B
Nix

{
baseArgsMkPython ? {},
baseArgsBuildPythonPackage ? {},
mach-nix ? import ../. {},
...
}:
with builtins;
mach-nix.mkPython (baseArgsMkPython // {
requirements = ''
pdfminer.six == 20200726
'';
})