We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31d74a6 commit f1c3be3Copy full SHA for f1c3be3
nix/testenv.nix
@@ -6,7 +6,7 @@
6
poetry2nix.mkPoetryEnv {
7
python = python311;
8
projectDir = ../integration_tests;
9
- preferWheels = true;
+ preferWheels = false;
10
overrides = poetry2nix.overrides.withDefaults (
11
self: super:
12
let
@@ -33,5 +33,9 @@ poetry2nix.mkPoetryEnv {
33
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ map (a: self.${a}) systems;
34
})
35
) buildSystems
36
+ // {
37
+ # 强制使用 nixpkgs 中预构建的 attrs
38
+ attrs = python311.pkgs.attrs;
39
+ }
40
);
41
}
0 commit comments