Merge pull request #68231 from Chiiruno/dev/zeronet

Update: Zeronet, Init: pythonPackages: merkletools
This commit is contained in:
Jörg Thalheim
2019-10-02 10:57:57 +01:00
committed by GitHub
3 changed files with 35 additions and 7 deletions

View File

@@ -0,0 +1,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 ];
};
}