e4b22d1f92
Diff: https://github.com/tillsteinbach/WeConnect-mqtt/compare/refs/tags/v0.48.3...v0.48.4 Changelog: https://github.com/tillsteinbach/WeConnect-mqtt/releases/tag/v0.48.4
61 lines
1.4 KiB
Nix
61 lines
1.4 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, paho-mqtt
|
|
, python-dateutil
|
|
, weconnect
|
|
, setuptools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "weconnect-mqtt";
|
|
version = "0.48.4";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tillsteinbach";
|
|
repo = "WeConnect-mqtt";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-Yv6CAGTDi4P9pImLxVk2QkZ014iqQ8UMBUeiyZWnYiQ=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace weconnect_mqtt/__version.py \
|
|
--replace-fail "0.0.0dev" "${version}"
|
|
substituteInPlace requirements.txt \
|
|
--replace-fail "weconnect[Images]~=" "weconnect>="
|
|
substituteInPlace pytest.ini \
|
|
--replace-fail "--cov=weconnect_mqtt --cov-config=.coveragerc --cov-report html" "" \
|
|
--replace-fail "pytest-cov" ""
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
paho-mqtt
|
|
python-dateutil
|
|
weconnect
|
|
] ++ weconnect.optional-dependencies.Images;
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"weconnect_mqtt"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python client that publishes data from Volkswagen WeConnect";
|
|
homepage = "https://github.com/tillsteinbach/WeConnect-mqtt";
|
|
changelog = "https://github.com/tillsteinbach/WeConnect-mqtt/releases/tag/v${version}";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|