mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-06 09:41:39 -05:00
Fix cryptography override
using `.override` creates a derivation that no longer supports `overridePythonAttrs`, so following call to `scrypto.overridePythonAttrs` fails. using `overridePythonAttrs` makes the resulting package able to have `overridePythonAttrs` called again.
This commit is contained in:
parent
ef89591c71
commit
a4bd44e986
1 changed files with 1 additions and 1 deletions
|
@ -390,7 +390,7 @@ lib.composeManyExtensions [
|
|||
scrypto =
|
||||
if isWheel then
|
||||
(
|
||||
super.cryptography.override { preferWheel = true; }
|
||||
super.cryptography.overridePythonAttrs { preferWheel = true; }
|
||||
) else super.cryptography;
|
||||
in
|
||||
scrypto.overridePythonAttrs
|
||||
|
|
Loading…
Add table
Reference in a new issue