2019-04-06 15:55:12 +01:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2019-10-16 10:43:17 +01:00
|
|
|
version = "1.4.2";
|
2019-04-06 15:55:12 +01:00
|
|
|
pname = "xxhash";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-16 10:43:17 +01:00
|
|
|
sha256 = "82cdc67b41da904aa2921107e9877814079d9b067a99f19852b5d85e8a40555d";
|
2019-04-06 15:55:12 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/ifduyue/python-xxhash;
|
|
|
|
description = "Python Binding for xxHash https://pypi.org/project/xxhash/";
|
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = [ maintainers.teh ];
|
|
|
|
};
|
|
|
|
}
|