Merge pull request #301633 from fabaff/hass-nabucasa-bump

python312Packages.hass-nabucasa: 0.79.0 -> 0.80.0
This commit is contained in:
Fabian Affolter 2024-04-07 00:46:25 +02:00 committed by GitHub
commit fcbb3d0833
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,28 +1,29 @@
{ lib {
, acme lib,
, aiohttp acme,
, atomicwrites-homeassistant aiohttp,
, attrs atomicwrites-homeassistant,
, buildPythonPackage attrs,
, ciso8601 buildPythonPackage,
, cryptography ciso8601,
, fetchFromGitHub cryptography,
, pycognito fetchFromGitHub,
, pyjwt pycognito,
, pytest-aiohttp pyjwt,
, pytest-timeout pytest-aiohttp,
, pytestCheckHook pytest-timeout,
, pythonOlder pytestCheckHook,
, pythonRelaxDepsHook pythonOlder,
, setuptools pythonRelaxDepsHook,
, snitun setuptools,
, syrupy snitun,
, xmltodict syrupy,
xmltodict,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "hass-nabucasa"; pname = "hass-nabucasa";
version = "0.79.0"; version = "0.80.0";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.11"; disabled = pythonOlder "3.11";
@ -31,19 +32,16 @@ buildPythonPackage rec {
owner = "nabucasa"; owner = "nabucasa";
repo = "hass-nabucasa"; repo = "hass-nabucasa";
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-7VhafefF7imvnhdFo6K+18h5kmXvIatKerJ+Qn5zwdQ="; hash = "sha256-8KxnS6LTK077/hr81JOiOj8GaNWBXO8XlvpYBm/sZbI=";
}; };
nativeBuildInputs = [ pythonRelaxDeps = [ "acme" ];
setuptools
pythonRelaxDepsHook
];
pythonRelaxDeps = [ nativeBuildInputs = [ pythonRelaxDepsHook ];
"acme"
];
propagatedBuildInputs = [ build-system = [ setuptools ];
dependencies = [
acme acme
aiohttp aiohttp
atomicwrites-homeassistant atomicwrites-homeassistant
@ -63,13 +61,11 @@ buildPythonPackage rec {
xmltodict xmltodict
]; ];
pythonImportsCheck = [ pythonImportsCheck = [ "hass_nabucasa" ];
"hass_nabucasa"
];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/NabuCasa/hass-nabucasa";
description = "Python module for the Home Assistant cloud integration"; description = "Python module for the Home Assistant cloud integration";
homepage = "https://github.com/NabuCasa/hass-nabucasa";
changelog = "https://github.com/NabuCasa/hass-nabucasa/releases/tag/${version}"; changelog = "https://github.com/NabuCasa/hass-nabucasa/releases/tag/${version}";
license = licenses.gpl3Only; license = licenses.gpl3Only;
maintainers = with maintainers; [ Scriptkiddi ]; maintainers = with maintainers; [ Scriptkiddi ];