We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cc5b07b + faec7b8 commit e09d753Copy full SHA for e09d753
pkgs/development/python-modules/eth-hash/default.nix
@@ -32,7 +32,7 @@ buildPythonPackage rec {
32
]
33
++ optional-dependencies.pycryptodome
34
# safe-pysha3 is not available on pypy
35
- ++ lib.optional (!isPyPy) optional-dependencies.pysha3;
+ ++ lib.optionals (!isPyPy) optional-dependencies.pysha3;
36
37
# Backends need to be tested separately and can not use hook
38
checkPhase = ''
@@ -51,6 +51,8 @@ buildPythonPackage rec {
51
pysha3 = [ safe-pysha3 ];
52
};
53
54
+ __structuredAttrs = true;
55
+
56
meta = {
57
description = "Ethereum hashing function keccak256";
58
homepage = "https://github.com/ethereum/eth-hash";
0 commit comments