49 lines
951 B
Nix

{
aiohttp,
buildPythonPackage,
fetchFromGitHub,
lib,
pydantic,
pytest-asyncio,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "pytouchlinesl";
version = "0.4.0";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "jnsgruk";
repo = "pytouchlinesl";
tag = version;
hash = "sha256-hrC5cBtAU9P9VaRIoUKDx5x4KwUN6mO/JwEZrsnYB0s=";
};
build-system = [ setuptools ];
dependencies = [
aiohttp
pydantic
];
nativeCheckInputs = [
pytestCheckHook
pytest-asyncio
];
pythonImportsCheck = [ "pytouchlinesl" ];
meta = {
description = "Python API client for Roth's TouchlineSL API";
homepage = "https://github.com/jnsgruk/pytouchlinesl";
changelog = "https://github.com/jnsgruk/pytouchlinesl/releases/tag/${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ jnsgruk ];
};
}