2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2019-04-06 15:55:12 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2021-06-18 22:47:43 +01:00
|
|
|
version = "2.0.2";
|
2019-04-06 15:55:12 +01:00
|
|
|
pname = "xxhash";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-06-18 22:47:43 +01:00
|
|
|
sha256 = "b7bead8cf6210eadf9cecf356e17af794f57c0939a3d420a00d87ea652f87b49";
|
2019-04-06 15:55:12 +01:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/ifduyue/python-xxhash";
|
2019-04-06 15:55:12 +01:00
|
|
|
description = "Python Binding for xxHash https://pypi.org/project/xxhash/";
|
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = [ maintainers.teh ];
|
|
|
|
};
|
|
|
|
}
|