Merge pull request #254277 from dotlambda/poetry-fix

poetry: fix build on x86_64-darwin
This commit is contained in:
Robert Schütz 2023-09-10 00:41:10 +00:00 committed by GitHub
commit 6812ad7a21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,6 +10,9 @@ let
poetry = self.callPackage ./unwrapped.nix { };
# version overrides required by poetry and its plugins
deepdiff = super.deepdiff.overridePythonAttrs (old: rec {
doCheck = false;
});
poetry-core = super.poetry-core.overridePythonAttrs (old: rec {
version = "1.7.0";
src = fetchFromGitHub {
@ -18,6 +21,7 @@ let
rev = version;
hash = "sha256-OfY2zc+5CgOrgbiPVnvMdT4h1S7Aek8S7iThl6azmsk=";
};
patches = [ ];
});
} // (plugins self);
};