Merge pull request #302587 from r-ryantm/auto-update/python312Packages.forecast-solar

python312Packages.forecast-solar: 3.0.0 -> 3.1.0
This commit is contained in:
Robert Schütz 2024-04-09 18:47:44 +00:00 committed by GitHub
commit 4b31973464
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 12 additions and 7 deletions

View File

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, pythonOlder
, aiodns
, aiohttp
@ -10,20 +11,23 @@
buildPythonPackage rec {
pname = "forecast-solar";
version = "3.0.0";
format = "setuptools";
version = "3.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "home-assistant-libs";
repo = "forecast_solar";
rev = "refs/tags/${version}";
hash = "sha256-Go0DF2qyVyGVYEeoEEuxsSR9Ge8Pg4S77zM1HL83ELc=";
rev = "refs/tags/v${version}";
hash = "sha256-iol0XtfPZI95o/uEyBcXgeQjcfl2kI+4mugtywa6BXI=";
};
PACKAGE_VERSION = version;
build-system = [
setuptools
];
propagatedBuildInputs = [
env.PACKAGE_VERSION = version;
dependencies = [
aiodns
aiohttp
] ++ lib.optionals (pythonOlder "3.9") [
@ -37,6 +41,7 @@ buildPythonPackage rec {
];
meta = with lib; {
changelog = "https://github.com/home-assistant-libs/forecast_solar/releases/tag/v${version}";
description = "Asynchronous Python client for getting forecast solar information";
homepage = "https://github.com/home-assistant-libs/forecast_solar";
license = licenses.mit;