mach-nix/tests/test_extra_pkgs.nix
DavHau c2812bebdb
Fix + Improve CI (#275)
- disable tests on macos due to https://github.com/actions/virtual-environments/issues/60
- enable testing of different mach-nix expressions in ./tests
- fix cryptography package < 3.4
2021-05-14 13:54:55 +07:00

17 lines
332 B
Nix

{
mach-nix ? import ../. {},
...
}:
with builtins;
mach-nix.mkPython {
requirements = ''
aiohttp
'';
packagesExtra = [
"https://github.com/psf/requests/tarball/v2.24.0"
(mach-nix.buildPythonPackage {
src = "https://github.com/django/django/tarball/3.1";
requirementsExtra = "pytest";
})
];
}