Skip to content

Commit 6e5a6fa

Browse files
committed
nix: update nixpkgs/kapack/simgrid...
1 parent 7f5d3b1 commit 6e5a6fa

File tree

2 files changed

+34
-14
lines changed

2 files changed

+34
-14
lines changed

flake.lock

+24-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

+10-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
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";
45
flake-utils.url = "github:numtide/flake-utils";
56
nur-kapack = {
67
url = "github:oar-team/nur-kapack/master";
@@ -21,10 +22,11 @@
2122
};
2223
};
2324

24-
outputs = { self, nixpkgs, nur-kapack, intervalset, batprotocol, flake-utils }:
25+
outputs = { self, nixpkgs, nixpkgs-pytest, nur-kapack, intervalset, batprotocol, flake-utils }:
2526
flake-utils.lib.eachSystem [ "x86_64-linux" ] (system:
2627
let
2728
pkgs = import nixpkgs { inherit system; };
29+
pkgs-pytest = import nixpkgs-pytest { inherit system; };
2830
kapack = nur-kapack.packages.${system};
2931
simgrid-base = kapack.simgrid;
3032
release-options = {
@@ -46,9 +48,9 @@
4648
};
4749
base-defs = {
4850
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;
5254
};
5355
callPackage = mergedPkgs: deriv-func: attrset: options: pkgs.lib.callPackageWith(mergedPkgs // options) deriv-func attrset;
5456
in rec {
@@ -84,8 +86,9 @@
8486
buildInputs = [
8587
packages-release.batsim
8688
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
8992
];
9093

9194
EDC_LD_LIBRARY_PATH = "${packages-release.batsim-edc-libs}/lib";

0 commit comments

Comments
 (0)