1{ stdenv
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 version = "2.0.0";
8 pname = "xxhash";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "58ca818554c1476fa1456f6cd4b87002e2294f09baf0f81e5a2a4968e62c423c";
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}