mach-nix/tests/test_pymc3.nix
2022-01-29 12:31:13 +07:00

12 lines
205 B
Nix

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