Skip to content

Commit

Permalink
default flake to python 3.11, fix rust deprecation message
Browse files Browse the repository at this point in the history
  • Loading branch information
luizirber committed Jul 18, 2023
1 parent b8d2570 commit cb713f5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@
rustc = rustVersion;
};
naersk-lib = naersk.lib."${system}".override {
cargo = rustPlatform.rust.cargo;
rustc = rustPlatform.rust.rustc;
cargo = rustVersion;
rustc = rustVersion;
};

python = pkgs.python310Packages;
python = pkgs.python311Packages;

in

Expand Down Expand Up @@ -104,8 +104,8 @@

git
stdenv.cc.cc.lib
(python310.withPackages (ps: with ps; [ virtualenv tox cffi ]))
(python311.withPackages (ps: with ps; [ virtualenv ]))
(python311.withPackages (ps: with ps; [ virtualenv tox cffi ]))
(python310.withPackages (ps: with ps; [ virtualenv ]))
(python39.withPackages (ps: with ps; [ virtualenv ]))
(python38.withPackages (ps: with ps; [ virtualenv ]))

Expand Down

0 comments on commit cb713f5

Please sign in to comment.