python3Packages.ohme: 1.7.1 -> 1.8.0 (#513608)

This commit is contained in:
Nick Cao
2026-04-27 19:54:00 +00:00
committed by GitHub
@@ -6,16 +6,16 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "ohme";
version = "1.7.1";
version = "1.8.0";
pyproject = true;
src = fetchFromGitHub {
owner = "dan-r";
repo = "ohmepy";
tag = "v${version}";
hash = "sha256-A+cGgM3pkOv1b3/+3XiqdhLo2JJbSNruZKbNG2o9BaE=";
tag = "v${finalAttrs.version}";
hash = "sha256-MJNudqNTWuYp/lq7DLDRnVcRtBQwbhR9uMlTK2Oq3Tk=";
};
build-system = [ setuptools ];
@@ -30,8 +30,8 @@ buildPythonPackage rec {
meta = {
description = "Module for interacting with the Ohme API";
homepage = "https://github.com/dan-r/ohmepy";
changelog = "https://github.com/dan-r/ohmepy/releases/tag/${src.tag}";
changelog = "https://github.com/dan-r/ohmepy/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})