pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / development / r-modules / test-evaluation.nix
blob2ca0d42c6db4f509c9557c50f11b20fc4756e221
1 # Run
3 #   nix-build test-evaluation.nix --dry-run
5 # to test whether the R package set evaluates properly.
7 let
9   config = {
10     allowBroken = true;
11     allowUnfree = true;
12   };
14   inherit (import ../../.. { inherit config; }) pkgs;
16   rWrapper = pkgs.rWrapper.override {
17     packages = pkgs.lib.filter pkgs.lib.isDerivation (pkgs.lib.attrValues pkgs.rPackages);
18   };
21   rWrapper