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

Merge pull request #329128 from dotlambda/vwsfriend

vwsfriend: init at 0.24.4
parents 9717c85e dacc5790
Loading
Loading
Loading
Loading
+63 −0
Original line number Diff line number Diff line
{
  lib,
  python3,
  fetchFromGitHub,
}:

python3.pkgs.buildPythonApplication rec {
  pname = "vwsfriend";
  version = "0.24.4";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "tillsteinbach";
    repo = "VWsFriend";
    rev = "refs/tags/v${version}";
    hash = "sha256-tt71J+UAIgYY/ac3ZyNDVTrnRvaKU+5WXVe///Hyv2U=";
  };

  sourceRoot = "${src.name}/vwsfriend";

  postPatch = ''
    # we don't need pytest-runner, pylint, etc.
    true > setup_requirements.txt

    substituteInPlace requirements.txt \
      --replace-fail psycopg2-binary psycopg2
  '';

  build-system = with python3.pkgs; [ setuptools ];

  pythonRelaxDeps = true;

  dependencies =
    with python3.pkgs;
    [
      weconnect
      hap-python
      pypng
      sqlalchemy
      psycopg2
      requests
      werkzeug
      flask
      flask-login
      flask-caching
      wtforms
      flask-wtf
      flask-sqlalchemy
      alembic
      haversine
    ]
    ++ weconnect.optional-dependencies.Images
    ++ hap-python.optional-dependencies.QRCode;

  meta = {
    changelog = "https://github.com/tillsteinbach/VWsFriend/blob/${src.rev}/CHANGELOG.md";
    description = "VW WeConnect visualization and control";
    homepage = "https://github.com/tillsteinbach/VWsFriend";
    license = lib.licenses.mit;
    mainProgram = "vwsfriend";
    maintainers = with lib.maintainers; [ dotlambda ];
  };
}