python3Packages.mmh3: init at 2.5.1

gstqt5
Daniël de Kok 2020-08-28 18:23:27 +02:00 committed by Jon
parent 64ea8af8fa
commit 1beb19e39d
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ lib
, fetchPypi
, buildPythonPackage
}:
buildPythonPackage rec {
pname = "mmh3";
version = "2.5.1";
src = fetchPypi {
inherit pname version;
sha256 = "0265pvfbcsijf51szsh14qk3l3zgs0rb5rbrw11zwan52yi0jlhq";
};
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;
maintainers = [ maintainers.danieldk ];
};
}

View File

@ -7629,6 +7629,8 @@ in {
ftfy = callPackage ../development/python-modules/ftfy { };
mmh3 = callPackage ../development/python-modules/mmh3 { };
murmurhash = callPackage ../development/python-modules/murmurhash { };
pkuseg = callPackage ../development/python-modules/pkuseg { };