summary refs log tree commit diff
path: root/pkgs/development/python-modules/merkletools/default.nix
blob: 92acdaf58ed42b4927c3c45c1e89ebe4e5261c26 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ 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; [ chiiruno ];
  };
}