Merge pull request #156497 from Groestlcoin/groestlcoin-hash

groestlcoin_hash: init at 1.0.1
This commit is contained in:
Ivv 2022-01-24 18:11:33 +01:00 committed by GitHub
commit b68f34c339
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "groestlcoin_hash";
version = "1.0.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-Nkco8ZA0rJaT9Mx4NIcptMvzd4h0BsRn2+gomdesirg=";
};
pythonImportsCheck = [
"groestlcoin_hash"
];
meta = with lib; {
description = "Bindings for groestl key derivation function library used in Groestlcoin";
homepage = "https://pypi.org/project/groestlcoin_hash/";
maintainers = with maintainers; [ gruve-p ];
license = licenses.unfree;
};
}

View file

@ -3510,6 +3510,8 @@ in {
grip = callPackage ../development/python-modules/grip { };
groestlcoin_hash = callPackage ../development/python-modules/groestlcoin_hash { };
grpc-google-iam-v1 = callPackage ../development/python-modules/grpc-google-iam-v1 { };
grpcio = callPackage ../development/python-modules/grpcio { };