1{ lib
2, fetchPypi
3, buildPythonPackage
4}:
5
6buildPythonPackage rec {
7 pname = "mmh3";
8 version = "3.0.0";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "d1ec578c09a07d3518ec9be540b87546397fa3455de73c166fcce51eaa5c41c5";
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}