Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 21 lines 475 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 version = "1.3.0"; 8 pname = "xxhash"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "1rhrqrlq4n3vgqd1fv1dcc5ga5dzy9qbd40p8rsqqhh5klxg48gy"; 13 }; 14 15 meta = with stdenv.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}