mach-nix/tests/test_pymc3.nix

14 lines
251 B
Nix
Raw Permalink 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 // {
providers._default = "wheel,sdist,nixpkgs";
requirements = ''
2022-01-29 05:31:13 +00:00
pymc3 == 3.11.4
'';
2021-06-09 06:11:17 +00:00
})