Merge pull request #325010 from mweinelt/pyserial-asyncio-fast-0.13

python312Packages.pyserial-asyncio-fast: 0.12 -> 0.13
This commit is contained in:
Nick Cao 2024-07-07 09:29:33 -04:00 committed by GitHub
commit 06bf533962
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,7 +5,6 @@
# build-system
setuptools,
wheel,
# dependencies
pyserial,
@ -17,22 +16,19 @@
buildPythonPackage rec {
pname = "pyserial-asyncio-fast";
version = "0.12";
version = "0.13";
pyproject = true;
src = fetchFromGitHub {
owner = "bdraco";
repo = "pyserial-asyncio-fast";
rev = version;
hash = "sha256-37dbJq+9Ex+/uiRR2esgOP15CjySA0MLvxnjiPDTF08=";
hash = "sha256-qAJ9jkhY2Gq/+/JBRObdSljTDPe3cKbjUfFon2ZgEps=";
};
nativeBuildInputs = [
setuptools
wheel
];
build-system = [ setuptools ];
propagatedBuildInputs = [ pyserial ];
dependencies = [ pyserial ];
pythonImportsCheck = [ "serial_asyncio_fast" ];
@ -42,6 +38,7 @@ buildPythonPackage rec {
];
meta = with lib; {
changelog = "https://github.com/home-assistant-libs/pyserial-asyncio-fast/releases/tag/${version}";
description = "Fast asyncio extension package for pyserial that implements eager writes";
homepage = "https://github.com/bdraco/pyserial-asyncio-fast";
license = licenses.bsd3;