depot/third_party/nixpkgs/pkgs/development/python-modules/merkletools/default.nix
Default email 22017988c6 Project import generated by Copybara.
GitOrigin-RevId: c777cdf5c564015d5f63b09cc93bef4178b19b01
2022-04-27 11:35:20 +02:00

20 lines
568 B
Nix

{ lib, buildPythonPackage, fetchPypi, pysha3 }:
buildPythonPackage rec {
pname = "merkletools";
version = "1.0.3";
src = fetchPypi {
inherit pname version;
sha256 = "0pdik5sil0xcrwdcgdfy86c5qcfrz24r0gfc8m8bxa0i7h7x2v9l";
};
propagatedBuildInputs = [ pysha3 ];
meta = with lib; {
description = "Python tools for creating Merkle trees, generating Merkle proofs, and verification of Merkle proofs";
homepage = "https://github.com/Tierion/pymerkletools";
license = licenses.mit;
maintainers = with maintainers; [ Madouura ];
};
}