2ce5db779a
GitOrigin-RevId: 48037fd90426e44e4bf03e6479e88a11453b9b66
61 lines
1 KiB
Nix
61 lines
1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, httpx
|
|
, protobuf
|
|
, pytest-asyncio
|
|
, pytest-httpx
|
|
, pytest-mock
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, setuptools-scm
|
|
, zeroconf
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "devolo-plc-api";
|
|
version = "0.8.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "2Fake";
|
|
repo = "devolo_plc_api";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-LMwvIwbP/nRFby295ur6QTgyXLLJ8ip30V9bti27qKQ=";
|
|
};
|
|
|
|
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
|
|
|
nativeBuildInputs = [
|
|
setuptools-scm
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
httpx
|
|
protobuf
|
|
zeroconf
|
|
];
|
|
|
|
checkInputs = [
|
|
pytest-asyncio
|
|
pytest-httpx
|
|
pytest-mock
|
|
pytestCheckHook
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [
|
|
"devolo_plc_api"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python module to interact with Devolo PLC devices";
|
|
homepage = "https://github.com/2Fake/devolo_plc_api";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|