python3Packages.treeo: fix build

This commit is contained in:
Jonathan Ringer 2022-02-06 10:32:35 -08:00
parent a1c9e8402c
commit 46b79f9b46
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

View file

@ -18,6 +18,11 @@ buildPythonPackage rec {
sha256 = "176r1kgsdlylvdrxmhnzni81p8m9cfnsn4wwn6fnmsgam2qbp76j";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'typing-extensions = "^3.10.0"' 'typing-extensions = "*"'
'';
nativeBuildInputs = [
poetry-core
];