python312Packages.broadlink: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-17 20:10:30 +02:00
parent c7c5b87f96
commit d69c3bd751

View File

@ -1,9 +1,10 @@
{ lib {
, buildPythonPackage lib,
, fetchPypi buildPythonPackage,
, cryptography fetchPypi,
, pythonOlder cryptography,
, setuptools pythonOlder,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -18,24 +19,18 @@ buildPythonPackage rec {
hash = "sha256-ID5YpUjio68xChs6ZhTQBW995kqbmwsASRJKQ1a5M2U="; hash = "sha256-ID5YpUjio68xChs6ZhTQBW995kqbmwsASRJKQ1a5M2U=";
}; };
build-system = [ build-system = [ setuptools ];
setuptools
];
dependencies = [ dependencies = [ cryptography ];
cryptography
];
# Module has no tests # Module has no tests
doCheck = false; doCheck = false;
pythonImportsCheck = [ pythonImportsCheck = [ "broadlink" ];
"broadlink"
];
meta = with lib; { meta = with lib; {
description = "Python API for controlling Broadlink IR controllers"; 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}"; changelog = "https://github.com/mjg59/python-broadlink/releases/tag/${version}";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];