Unverified Commit 322dc9ab authored by Wael Nasreddine's avatar Wael Nasreddine Committed by GitHub
Browse files

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

parents b2fde735 b4ab47cf
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -56,7 +56,7 @@ in
  };

  h3_4 = generic {
    version = "4.3.0";
    hash = "sha256-DUILKZ1QvML6qg+WdOxir6zRsgTvk+En6yjeFf6MQBg=";
    version = "4.4.1";
    hash = "sha256-tKonXauTJiOb5DV56tOmnvba7eNYcWTnOvCSokheVsY=";
  };
}
+6 −5
Original line number Diff line number Diff line
@@ -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 ];
  };
}
})