mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-24 05:00:19 +00:00
Merge pull request #325010 from mweinelt/pyserial-asyncio-fast-0.13
python312Packages.pyserial-asyncio-fast: 0.12 -> 0.13
This commit is contained in:
commit
06bf533962
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user