mach-nix/tests/test_pymc3.nix

13 lines
204 B
Nix
Raw Normal View History

{
2021-06-09 06:11:17 +00:00
baseArgsMkPython ? {},
baseArgsBuildPythonPackage ? {},
mach-nix ? import ../. {},
...
}:
with builtins;
2021-06-09 06:11:17 +00:00
mach-nix.mkPython (baseArgsMkPython // {
requirements = ''
pymc3 == 3.9.3
'';
2021-06-09 06:11:17 +00:00
})