blob: 562ce983e27016f875f976b3ae04f2ce674a3de9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pyserial,
}:
buildPythonPackage rec {
pname = "asyncserial";
version = "1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "m-labs";
repo = "asyncserial";
tag = version;
hash = "sha256-ZHzgJnbsDVxVcp09LXq9JZp46+dorgdP8bAiTB59K28=";
};
build-system = [ setuptools ];
dependencies = [ pyserial ];
pythonImportsCheck = [ "asyncserial" ];
meta = {
description = "asyncio support for pyserial";
homepage = "https://github.com/m-labs/asyncserial";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ doronbehar ];
};
}
|