Merge pull request #164951 from r-ryantm/auto-update/python3.10-broadlink

python310Packages.broadlink: 0.18.0 -> 0.18.1
This commit is contained in:
Fabian Affolter 2022-03-20 11:40:17 +01:00 committed by GitHub
commit bf66878a33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,22 +2,26 @@
, buildPythonPackage
, fetchPypi
, cryptography
, pythonOlder
}:
buildPythonPackage rec {
pname = "broadlink";
version = "0.18.0";
version = "0.18.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "c66b3e4a097d6549f0fcc9ccdf289bd88f73f647ad9449e1c4e2958301ad1b04";
hash = "sha256-KMfL1mY4th87gjPrdhvzQjdXucgwSChsykOCO3cPAD8=";
};
propagatedBuildInputs = [
cryptography
];
# no tests available
# Module has no tests
doCheck = false;
pythonImportsCheck = [
@ -28,5 +32,6 @@ buildPythonPackage rec {
description = "Python API for controlling Broadlink IR controllers";
homepage = "https://github.com/mjg59/python-broadlink";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}