2020-09-25 04:45:31 +00:00
|
|
|
{ lib
|
|
|
|
, fetchPypi
|
|
|
|
, buildPythonPackage
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "mmh3";
|
2023-04-12 12:48:02 +00:00
|
|
|
version = "3.1.0";
|
2020-09-25 04:45:31 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2023-04-12 12:48:02 +00:00
|
|
|
sha256 = "sha256-mw8rKrSpFTM8nRCJVy4pCgIeu1uQC7f3EU3MwDmV1zI=";
|
2020-09-25 04:45:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "mmh3" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Python wrapper for MurmurHash3, a set of fast and robust hash functions";
|
|
|
|
homepage = "https://pypi.org/project/mmh3/";
|
|
|
|
license = licenses.cc0;
|
|
|
|
};
|
|
|
|
}
|