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

python312Packages.weheat: init at 2024.09.10 (#341799)

parents 6634004a 00130888
Loading
Loading
Loading
Loading
+52 −0
Original line number Diff line number Diff line
{
  lib,
  aenum,
  buildPythonPackage,
  fetchFromGitHub,
  pydantic,
  python-dateutil,
  pythonOlder,
  setuptools,
  urllib3,
}:

buildPythonPackage rec {
  pname = "weheat";
  version = "2024.09.10";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "wefabricate";
    repo = "wh-python";
    rev = "refs/tags/${version}";
    hash = "sha256-D9m9IR5RTRphIgDX25izkbAHeLml9AYL6xdH46ryqaI=";
  };

  pythonRelaxDeps = [
    "urllib3"
    "pydantic"
  ];

  build-system = [ setuptools ];

  dependencies = [
    aenum
    pydantic
    python-dateutil
    urllib3
  ];

  # Module has no tests
  doCheck = false;

  pythonImportsCheck = [ "weheat" ];

  meta = {
    description = "Library to interact with the weheat API";
    homepage = "https://github.com/wefabricate/wh-python";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -17313,6 +17313,8 @@ self: super: with self; {
  weconnect-mqtt = callPackage ../development/python-modules/weconnect-mqtt { };
  weheat =  callPackage ../development/python-modules/weheat { };
  werkzeug = callPackage ../development/python-modules/werkzeug { };
  west = callPackage ../development/python-modules/west { };