1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 version = "2.0.2"; 8 pname = "xxhash"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "b7bead8cf6210eadf9cecf356e17af794f57c0939a3d420a00d87ea652f87b49"; 13 }; 14 15 meta = with lib; { 16 homepage = "https://github.com/ifduyue/python-xxhash"; 17 description = "Python Binding for xxHash https://pypi.org/project/xxhash/"; 18 license = licenses.bsd2; 19 maintainers = [ maintainers.teh ]; 20 }; 21}