Unverified Commit 518131bb authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #213680 from wegank/eth-hash-fix

python311Packages.eth-hash: fix build
parents 9dce4fb8 ea43ffa1
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -4,6 +4,7 @@
, pythonOlder
, pytest
, pysha3
, safe-pysha3
, pycryptodome
}:

@@ -31,7 +32,7 @@ buildPythonPackage rec {

  passthru.optional-dependencies = {
    pycryptodome = [ pycryptodome ];
    pysha3 = [ pysha3 ];
    pysha3 = if pythonOlder "3.9" then [ pysha3 ] else [ safe-pysha3 ];
  };

  meta = with lib; {