Skip to content

Commit bfc2a5b

Browse files
committed
1 parent 270d0e7 commit bfc2a5b

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

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

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,20 @@
22
lib,
33
fetchFromGitHub,
44
buildPythonPackage,
5-
pythonOlder,
65
setuptools,
76
pytestCheckHook,
87
}:
98

109
buildPythonPackage rec {
1110
pname = "mmh3";
12-
version = "5.0.1";
11+
version = "5.1.0";
1312
pyproject = true;
1413

15-
disabled = pythonOlder "3.8";
16-
1714
src = fetchFromGitHub {
1815
owner = "hajimes";
1916
repo = "mmh3";
2017
tag = "v${version}";
21-
hash = "sha256-no3wbBxEz1UPiN25HvZGAUV1QxZydJB0Hb2Ib9ZrAUY=";
18+
hash = "sha256-56LrJuoBvhGgw+w4GIQ0XEQtf5oR87el+gZxgBYkyx0=";
2219
};
2320

2421
build-system = [ setuptools ];
@@ -27,11 +24,11 @@ buildPythonPackage rec {
2724

2825
nativeCheckInputs = [ pytestCheckHook ];
2926

30-
meta = with lib; {
27+
meta = {
3128
description = "Python wrapper for MurmurHash3, a set of fast and robust hash functions";
3229
homepage = "https://github.com/hajimes/mmh3";
3330
changelog = "https://github.com/hajimes/mmh3/blob/v${version}/CHANGELOG.md";
34-
license = licenses.cc0;
31+
license = lib.licenses.cc0;
3532
maintainers = [ ];
3633
};
3734
}

0 commit comments

Comments
 (0)