mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
79e6a1f3e2
Remove myself as a maintainer of spaCy and its dependencies.
23 lines
464 B
Nix
23 lines
464 B
Nix
{ 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;
|
|
};
|
|
}
|