mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
23 lines
476 B
Nix
23 lines
476 B
Nix
{ lib
|
|
, fetchPypi
|
|
, buildPythonPackage
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mmh3";
|
|
version = "3.0.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "d1ec578c09a07d3518ec9be540b87546397fa3455de73c166fcce51eaa5c41c5";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|