h3_4: 4.3.0 -> 4.4.1, python3Packages.h3: 4.4.1 -> 4.4.2 (#493392)

This commit is contained in:
Wael Nasreddine
2026-02-26 03:57:02 +00:00
committed by GitHub
2 changed files with 8 additions and 7 deletions
+2 -2
View File
@@ -56,7 +56,7 @@ in
};
h3_4 = generic {
version = "4.3.0";
hash = "sha256-DUILKZ1QvML6qg+WdOxir6zRsgTvk+En6yjeFf6MQBg=";
version = "4.4.1";
hash = "sha256-tKonXauTJiOb5DV56tOmnvba7eNYcWTnOvCSokheVsY=";
};
}
@@ -14,17 +14,17 @@
stdenv,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "h3";
version = "4.4.1";
version = "4.4.2";
pyproject = true;
# pypi version does not include tests
src = fetchFromGitHub {
owner = "uber";
repo = "h3-py";
tag = "v${version}";
hash = "sha256-ugYx8FJUxfrJHfzRxyjaOlG/Z0KhKglRHTgKKBHzUGQ=";
tag = "v${finalAttrs.version}";
hash = "sha256-+2cf/m+8BEEjNgIyuYmLDD7wsmc3Bg8QXaIjC0Px+Qk=";
};
dontConfigure = true;
@@ -75,9 +75,10 @@ buildPythonPackage rec {
pythonImportsCheck = [ "h3" ];
meta = {
changelog = "https://github.com/uber/h3-py/blob/${finalAttrs.src.rev}/CHANGELOG.md";
homepage = "https://github.com/uber/h3-py";
description = "Hierarchical hexagonal geospatial indexing system";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.kalbasit ];
};
}
})