pythonPackages: merkletools: init at 1.0.3

gstqt5
Okinan 2019-09-10 01:30:40 -05:00
parent 3387a16c2f
commit 733f3d28c2
2 changed files with 22 additions and 0 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 ];
};
}

View File

@ -3875,6 +3875,8 @@ in {
pymysqlsa = callPackage ../development/python-modules/pymysqlsa { };
merkletools = callPackage ../development/python-modules/merkletools { };
monosat = disabledIf (!isPy3k) (pkgs.monosat.python { inherit buildPythonPackage; inherit (self) cython; });
monotonic = callPackage ../development/python-modules/monotonic { };