1{ lib
2, fetchPypi
3, buildPythonPackage
4}:
5
6buildPythonPackage rec {
7 pname = "mmh3";
8 version = "3.1.0";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "sha256-mw8rKrSpFTM8nRCJVy4pCgIeu1uQC7f3EU3MwDmV1zI=";
13 };
14
15 pythonImportsCheck = [ "mmh3" ];
16
17 meta = with lib; {
18 description = "Python wrapper for MurmurHash3, a set of fast and robust hash functions";
19 homepage = "https://pypi.org/project/mmh3/";
20 license = licenses.cc0;
21 };
22}