Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 508 B view raw
1{ lib 2, fetchPypi 3, buildPythonPackage 4}: 5 6buildPythonPackage rec { 7 pname = "mmh3"; 8 version = "2.5.1"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "0265pvfbcsijf51szsh14qk3l3zgs0rb5rbrw11zwan52yi0jlhq"; 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 maintainers = [ maintainers.danieldk ]; 22 }; 23}