Skip to content

Commit

Permalink
test: try using a wheel for watchdog
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Oct 28, 2024
1 parent 5719038 commit 7b0e52c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tests/mkdocs-material/default.nix
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
{ poetry2nix, python311 }:
{ poetry2nix, python3 }:
let
env = poetry2nix.mkPoetryEnv {
python = python311;
python = python3;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
overrides = poetry2nix.overrides.withDefaults (_: prev: {
watchdog = prev.watchdog.override { preferWheel = true; };
});
};
in
env.python.pkgs.mkdocs-material

0 comments on commit 7b0e52c

Please sign in to comment.