mach-nix/tests/test_non_python_extra_pkgs.nix
DavHau 2f9b022d91
Release 3.0.0 (#159)
* fix non-python packages passed via packagesExtra

* refactor examples and readme for 3.0.0

* add changelog for 3.0.0

* bump version to 3.0.0 and update nixpkgs and pypi-deps-db dependencies
2020-10-14 03:17:27 +07:00

13 lines
168 B
Nix

{
mach-nix ? import ../. {},
...
}:
with builtins;
mach-nix.mkPython {
requirements = ''
requests
'';
packagesExtra = [
mach-nix.nixpkgs.hello
];
}