Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "groestlcoin_hash"; 8 version = "1.0.3"; 9 format = "setuptools"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "31a8f6fa4c19db5258c3c73c071b71702102c815ba862b6015d9e4b75ece231e"; 14 }; 15 16 pythonImportsCheck = [ 17 "groestlcoin_hash" 18 ]; 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}