Merge pull request #304835 from r-ryantm/auto-update/python312Packages.broadlink

python312Packages.broadlink: 0.18.3 -> 0.19.0
This commit is contained in:
Fabian Affolter 2024-04-18 09:08:04 +02:00 committed by GitHub
commit da8abffb88
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 15 additions and 15 deletions

View File

@ -1,36 +1,36 @@
{ lib
, buildPythonPackage
, fetchPypi
, cryptography
, pythonOlder
{
lib,
buildPythonPackage,
fetchPypi,
cryptography,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "broadlink";
version = "0.18.3";
format = "setuptools";
version = "0.19.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-3+WKuMbH79v2i4wurObKQZowCmFbVsxlQp3aSk+eelg=";
hash = "sha256-ID5YpUjio68xChs6ZhTQBW995kqbmwsASRJKQ1a5M2U=";
};
propagatedBuildInputs = [
cryptography
];
build-system = [ setuptools ];
dependencies = [ cryptography ];
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"broadlink"
];
pythonImportsCheck = [ "broadlink" ];
meta = with lib; {
description = "Python API for controlling Broadlink IR controllers";
homepage = "https://github.com/mjg59/python-broadlink";
homepage = "https://github.com/mjg59/python-broadlink";
changelog = "https://github.com/mjg59/python-broadlink/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];