depot/third_party/nixpkgs/pkgs/development/python-modules/aioraven/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

50 lines
993 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pythonOlder,
iso4217,
pyserial,
pyserial-asyncio-fast,
pytestCheckHook,
pytest-asyncio,
}:
buildPythonPackage rec {
pname = "aioraven";
version = "0.7.0";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "cottsay";
repo = "aioraven";
rev = "refs/tags/${version}";
hash = "sha256-ux2jeXkh8YsJ6mItXOx40pp0Tc+aJXMV7ZqyZg+iy2c=";
};
build-system = [ setuptools ];
dependencies = [
iso4217
pyserial
pyserial-asyncio-fast
];
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 ];
};
}