nixpkgs/pkgs/development/python-modules/aioraven/default.nix
2024-03-28 23:58:48 +01:00

54 lines
983 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, pythonOlder
, iso4217
, pyserial
, pyserial-asyncio
, pytestCheckHook
, pytest-asyncio
}:
buildPythonPackage rec {
pname = "aioraven";
version = "0.5.3";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "cottsay";
repo = "aioraven";
rev = "refs/tags/${version}";
hash = "sha256-kGCFwpMaLWxLUp8k5H5AnL21KrwohbUYLswLcLqmc3M=";
};
build-system = [
setuptools
];
dependencies = [
iso4217
pyserial
pyserial-asyncio
];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
];
pythonImportsCheck = [
"aioraven"
];
meta = with lib; {
description = "Module for communication with RAVEn devices";
homepage = "https://github.com/cottsay/aioraven";
changelog = "https://github.com/cottsay/aioraven/blob/${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}