nixpkgs/pkgs/development/python-modules/mmh3/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
662 B
Nix
Raw Normal View History

2020-08-28 18:23:27 +02:00
{ lib
, fetchPypi
, buildPythonPackage
, pythonOlder
2020-08-28 18:23:27 +02:00
}:
buildPythonPackage rec {
pname = "mmh3";
2023-07-18 13:15:03 +02:00
version = "4.0.1";
format = "setuptools";
disabled = pythonOlder "3.7";
2020-08-28 18:23:27 +02:00
src = fetchPypi {
inherit pname version;
2023-07-18 13:15:03 +02:00
hash = "sha256-rYvmldxORKeWMXSLpVYtgD8KxC02prl6U6yoSnCAk4U=";
2020-08-28 18:23:27 +02:00
};
2023-06-20 08:10:44 +02:00
pythonImportsCheck = [
"mmh3"
];
2020-08-28 18:23:27 +02:00
meta = with lib; {
description = "Python wrapper for MurmurHash3, a set of fast and robust hash functions";
2023-06-20 08:10:44 +02:00
homepage = "https://github.com/hajimes/mmh3";
changelog = "https://github.com/hajimes/mmh3/blob/v${version}/CHANGELOG.md";
2020-08-28 18:23:27 +02:00
license = licenses.cc0;
2023-06-20 08:10:44 +02:00
maintainers = with maintainers; [ ];
2020-08-28 18:23:27 +02:00
};
}