Merge pull request #299532 from r-ryantm/auto-update/python312Packages.aiounifi

python312Packages.aiounifi: 72 -> 73
This commit is contained in:
Fabian Affolter 2024-03-28 09:43:05 +01:00 committed by GitHub
commit e595323f37
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -15,7 +15,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "aiounifi"; pname = "aiounifi";
version = "72"; version = "73";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.11"; disabled = pythonOlder "3.11";
@ -24,22 +24,22 @@ buildPythonPackage rec {
owner = "Kane610"; owner = "Kane610";
repo = "aiounifi"; repo = "aiounifi";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-PrFI5ncHW4r2Re1BIqRZlz8ns6d5p6y6PASCleSmyNc="; hash = "sha256-xs3+2f/CNabdXm8g2V+sEIR5kQguxi3nMeJLb8TVrck=";
}; };
postPatch = '' postPatch = ''
substituteInPlace pyproject.toml \ substituteInPlace pyproject.toml \
--replace "setuptools==" "setuptools>=" \ --replace-fail "setuptools==" "setuptools>=" \
--replace "wheel==" "wheel>=" --replace-fail "wheel==" "wheel>="
sed -i '/--cov=/d' pyproject.toml sed -i '/--cov=/d' pyproject.toml
''; '';
nativeBuildInputs = [ build-system = [
setuptools setuptools
]; ];
propagatedBuildInputs = [ dependencies = [
aiohttp aiohttp
orjson orjson
segno segno
@ -63,10 +63,10 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Python library for communicating with Unifi Controller API"; description = "Python library for communicating with Unifi Controller API";
mainProgram = "aiounifi";
homepage = "https://github.com/Kane610/aiounifi"; homepage = "https://github.com/Kane610/aiounifi";
changelog = "https://github.com/Kane610/aiounifi/releases/tag/v${version}"; changelog = "https://github.com/Kane610/aiounifi/releases/tag/v${version}";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ ]; maintainers = with maintainers; [ ];
mainProgram = "aiounifi";
}; };
} }