python3.pkgs.asyncserial: init at unstable-2022-06-10

This commit is contained in:
Doron Behar
2022-11-12 14:49:38 +02:00
parent f97c7b38a1
commit b6429927c0
2 changed files with 32 additions and 0 deletions
@@ -0,0 +1,30 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pyserial
}:
buildPythonPackage rec {
pname = "asyncserial";
version = "unstable-2022-06-10";
src = fetchFromGitHub {
owner = "m-labs";
repo = "asyncserial";
rev = "446559fec892a556876b17d17f182ae9647d5952";
hash = "sha256-WExmgh55sTH2w7wV3i96J1F1FN7L5rX3L/Ayvt2Kw/g=";
};
propagatedBuildInputs = [
pyserial
];
pythonImportsCheck = [ "asyncserial" ];
meta = with lib; {
description = "asyncio support for pyserial";
homepage = "https://github.com/m-labs/asyncserial";
license = licenses.bsd2;
maintainers = with maintainers; [ doronbehar ];
};
}
+2
View File
@@ -682,6 +682,8 @@ self: super: with self; {
asyncpg = callPackage ../development/python-modules/asyncpg { };
asyncserial = callPackage ../development/python-modules/asyncserial { };
asyncsleepiq = callPackage ../development/python-modules/asyncsleepiq { };
asyncssh = callPackage ../development/python-modules/asyncssh { };