Merge pull request #146372 from fabaff/bump-velbus-aio

python3Packages.velbus-aio: 2021.11.6 -> 2021.11.7
This commit is contained in:
Fabian Affolter 2021-11-18 08:43:09 +01:00 committed by GitHub
commit 83a1a5596e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,13 +3,15 @@
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pyserial
, pyserial-asyncio
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "velbus-aio";
version = "2021.11.6";
version = "2021.11.7";
format = "setuptools";
disabled = pythonOlder "3.7";
@ -17,11 +19,12 @@ buildPythonPackage rec {
owner = "Cereal2nd";
repo = pname;
rev = version;
sha256 = "sha256-Vm/CgrSSCU76CzAxCtpMsE8/GtPE9SlfqDyzYp4Gc8E=";
sha256 = "sha256-itaYSfZm+/vF/tKRO2BW4qXrDXP0YfBrKiq9bMGFj0M=";
};
propagatedBuildInputs = [
backoff
pyserial
pyserial-asyncio
];