Unverified Commit e8bbdce7 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.weheat: 2026.1.25 -> 2026.2.28 (#495466)

parents d934e640 6eec0a01
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -11,16 +11,16 @@
  urllib3,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "weheat";
  version = "2026.1.25";
  version = "2026.2.28";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "wefabricate";
    repo = "wh-python";
    tag = version;
    hash = "sha256-8gpRK7vQojOskF0n8iY/UzfCfNPQZ5eVhw2H7vZvgps=";
    tag = finalAttrs.version;
    hash = "sha256-V29B30LztIHFbTRTqppR3kvVNwDoK4BPq5fK1blJUrU=";
  };

  build-system = [ setuptools ];
@@ -42,8 +42,8 @@ buildPythonPackage rec {
  meta = {
    description = "Library to interact with the weheat API";
    homepage = "https://github.com/wefabricate/wh-python";
    changelog = "https://github.com/wefabricate/wh-python/releases/tag/${src.tag}";
    changelog = "https://github.com/wefabricate/wh-python/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})