Files
nixpkgs/pkgs/by-name/vw/vwsfriend/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

64 lines
1.3 KiB
Nix

{
lib,
python3,
fetchFromGitHub,
}:
python3.pkgs.buildPythonApplication rec {
pname = "vwsfriend";
version = "0.24.7";
pyproject = true;
src = fetchFromGitHub {
owner = "tillsteinbach";
repo = "VWsFriend";
tag = "v${version}";
hash = "sha256-ZGH7rcGSAYDBSjv1jZjT/uGJIrFL71RYK6vX71RHz8E=";
};
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 ];
};
}