1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5}: 6 7buildPythonPackage rec { 8 pname = "groestlcoin-hash"; 9 version = "1.0.3"; 10 format = "setuptools"; 11 12 src = fetchPypi { 13 pname = "groestlcoin_hash"; 14 inherit version; 15 sha256 = "31a8f6fa4c19db5258c3c73c071b71702102c815ba862b6015d9e4b75ece231e"; 16 }; 17 18 pythonImportsCheck = [ "groestlcoin_hash" ]; 19 20 meta = with lib; { 21 description = "Bindings for groestl key derivation function library used in Groestlcoin"; 22 homepage = "https://pypi.org/project/groestlcoin_hash/"; 23 maintainers = with maintainers; [ gruve-p ]; 24 license = licenses.mit; 25 }; 26}