python312Packages.broadlink: refactor

This commit is contained in:
Fabian Affolter 2024-04-17 20:09:54 +02:00
parent 5c639817f6
commit c7c5b87f96
1 changed files with 7 additions and 2 deletions

View File

@ -3,12 +3,13 @@
, fetchPypi
, cryptography
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "broadlink";
version = "0.19.0";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
@ -17,7 +18,11 @@ buildPythonPackage rec {
hash = "sha256-ID5YpUjio68xChs6ZhTQBW995kqbmwsASRJKQ1a5M2U=";
};
propagatedBuildInputs = [
build-system = [
setuptools
];
dependencies = [
cryptography
];