blob: baccb513fe6b87aec99a6066c560cc6680aec540 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
pyserial,
}:
buildPythonPackage rec {
pname = "pyserial-asyncio";
version = "0.6";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-tgMpI+BenXXsF6WvmphCnEbSg5rfr4BgTVLg+qzXoy8=";
};
propagatedBuildInputs = [ pyserial ];
__darwinAllowLocalNetworking = true;
pythonImportsCheck = [ "serial_asyncio" ];
meta = {
description = "Asyncio extension package for pyserial";
homepage = "https://github.com/pyserial/pyserial-asyncio";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}
|