|
1 | 1 | {
|
2 | 2 | inputs = {
|
3 |
| - nixpkgs.url = "github:nixos/nixpkgs?ref=22.11"; |
| 3 | + nixpkgs.url = "github:nixos/nixpkgs?ref=23.05"; |
| 4 | + nixpkgs-pytest.url = "github:nixos/nixpkgs?ref=22.11"; |
4 | 5 | flake-utils.url = "github:numtide/flake-utils";
|
5 | 6 | nur-kapack = {
|
6 | 7 | url = "github:oar-team/nur-kapack/master";
|
|
21 | 22 | };
|
22 | 23 | };
|
23 | 24 |
|
24 |
| - outputs = { self, nixpkgs, nur-kapack, intervalset, batprotocol, flake-utils }: |
| 25 | + outputs = { self, nixpkgs, nixpkgs-pytest, nur-kapack, intervalset, batprotocol, flake-utils }: |
25 | 26 | flake-utils.lib.eachSystem [ "x86_64-linux" ] (system:
|
26 | 27 | let
|
27 | 28 | pkgs = import nixpkgs { inherit system; };
|
| 29 | + pkgs-pytest = import nixpkgs-pytest { inherit system; }; |
28 | 30 | kapack = nur-kapack.packages.${system};
|
29 | 31 | simgrid-base = kapack.simgrid;
|
30 | 32 | release-options = {
|
|
46 | 48 | };
|
47 | 49 | base-defs = {
|
48 | 50 | cppMesonDevBase = nur-kapack.lib.${system}.cppMesonDevBase;
|
49 |
| - pytest = pkgs.python3Packages.pytest; |
50 |
| - pytest-html = pkgs.python3Packages.pytest-html; |
51 |
| - pandas = pkgs.python3Packages.pandas; |
| 51 | + pytest = pkgs-pytest.python3Packages.pytest; |
| 52 | + pytest-html = pkgs-pytest.python3Packages.pytest-html; |
| 53 | + pandas = pkgs-pytest.python3Packages.pandas; |
52 | 54 | };
|
53 | 55 | callPackage = mergedPkgs: deriv-func: attrset: options: pkgs.lib.callPackageWith(mergedPkgs // options) deriv-func attrset;
|
54 | 56 | in rec {
|
|
84 | 86 | buildInputs = [
|
85 | 87 | packages-release.batsim
|
86 | 88 | packages-release.batsim-edc-libs
|
87 |
| - pkgs.python3Packages.ipython |
88 |
| - pkgs.python3Packages.pytest |
| 89 | + pkgs-pytest.python3Packages.ipython |
| 90 | + pkgs-pytest.python3Packages.pytest |
| 91 | + pkgs-pytest.python3Packages.pytest-html |
89 | 92 | ];
|
90 | 93 |
|
91 | 94 | EDC_LD_LIBRARY_PATH = "${packages-release.batsim-edc-libs}/lib";
|
|
0 commit comments