Skip to content

Commit

Permalink
testing/python: Use default Python from nixpkgs
Browse files Browse the repository at this point in the history
Fixes #567
  • Loading branch information
avdv committed Jul 12, 2024
1 parent 02b0e59 commit f7b6b6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testing/python/vanilla.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
let
nixpkgs = import <nixpkgs> {};
filterFun = ps: [ ps.flask ];
pythonWithPkgs = nixpkgs.python310.withPackages filterFun;
pythonWithPkgs = nixpkgs.python3.withPackages filterFun;
in {
python = pythonWithPkgs.python;
pkgs = filterFun pythonWithPkgs.pkgs;
Expand Down

0 comments on commit f7b6b6b

Please sign in to comment.