1{ lib, buildPythonPackage, fetchPypi, pysha3 }: 2 3buildPythonPackage rec { 4 pname = "merkletools"; 5 version = "1.0.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0pdik5sil0xcrwdcgdfy86c5qcfrz24r0gfc8m8bxa0i7h7x2v9l"; 10 }; 11 12 propagatedBuildInputs = [ pysha3 ]; 13 14 meta = with lib; { 15 description = "Python tools for creating Merkle trees, generating Merkle proofs, and verification of Merkle proofs"; 16 homepage = "https://github.com/Tierion/pymerkletools"; 17 license = licenses.mit; 18 maintainers = with maintainers; [ chiiruno ]; 19 }; 20}