python312Packages.broadlink: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-17 20:10:30 +02:00
parent c7c5b87f96
commit d69c3bd751
1 changed files with 11 additions and 16 deletions

View File

@ -1,9 +1,10 @@
{ lib
, buildPythonPackage
, fetchPypi
, cryptography
, pythonOlder
, setuptools
{
lib,
buildPythonPackage,
fetchPypi,
cryptography,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
@ -18,24 +19,18 @@ buildPythonPackage rec {
hash = "sha256-ID5YpUjio68xChs6ZhTQBW995kqbmwsASRJKQ1a5M2U=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
cryptography
];
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 ];