python3Packages.mmh3: init at 2.5.1
This commit is contained in:
parent
64ea8af8fa
commit
1beb19e39d
23
pkgs/development/python-modules/mmh3/default.nix
Normal file
23
pkgs/development/python-modules/mmh3/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user