poetry: restore poetry-core override

This commit is contained in:
K900 2023-10-24 21:16:27 +03:00
parent 589c74ae5d
commit 881e946d8b

View file

@ -1,9 +1,25 @@
{ python3 }: { python3, fetchFromGitHub }:
let let
python = python3.override { python = python3.override {
packageOverrides = self: super: { packageOverrides = self: super: rec {
poetry = self.callPackage ./unwrapped.nix { }; poetry = self.callPackage ./unwrapped.nix { };
# The versions of Poetry and poetry-core need to match exactly,
# and poetry-core in nixpkgs requires a staging cycle to be updated,
# so apply an override here.
#
# We keep the override around even when the versions match, as
# it's likely to become relevant again after the next Poetry update.
poetry-core = super.poetry-core.overridePythonAttrs (old: rec {
version = poetry.version;
src = fetchFromGitHub {
owner = "python-poetry";
repo = "poetry-core";
rev = version;
hash = "sha256-OfY2zc+5CgOrgbiPVnvMdT4h1S7Aek8S7iThl6azmsk=";
};
});
} // (plugins self); } // (plugins self);
}; };