Merge pull request #305255 from fabaff/accuweather-bump

python312Packages.accuweather: 2.1.1 -> 3.0.0
This commit is contained in:
Fabian Affolter 2024-04-19 12:27:50 +02:00 committed by GitHub
commit ee5ad6173a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 23 additions and 19 deletions

View File

@ -1,30 +1,35 @@
{ lib
, aiohttp
, aioresponses
, buildPythonPackage
, fetchFromGitHub
, orjson
, pytest-asyncio
, pytest-error-for-skips
, pytestCheckHook
, pythonOlder
{
lib,
aiohttp,
aioresponses,
buildPythonPackage,
fetchFromGitHub,
orjson,
pytest-asyncio,
pytest-error-for-skips,
pytestCheckHook,
pythonOlder,
setuptools,
syrupy,
}:
buildPythonPackage rec {
pname = "accuweather";
version = "2.1.1";
format = "setuptools";
version = "3.0.0";
pyproject = true;
disabled = pythonOlder "3.9";
disabled = pythonOlder "3.11";
src = fetchFromGitHub {
owner = "bieniu";
repo = pname;
repo = "accuweather";
rev = "refs/tags/${version}";
hash = "sha256-hbmeQnxVhBbXKHNdeXzAwRnMKBNvKsdfHg8MzALinhc=";
hash = "sha256-hnKwK0I8C8Xh7yn4yk2DqowqgyZYDB22IEllm5MeIGo=";
};
propagatedBuildInputs = [
build-system = [ setuptools ];
dependencies = [
aiohttp
orjson
];
@ -34,11 +39,10 @@ buildPythonPackage rec {
pytest-asyncio
pytest-error-for-skips
pytestCheckHook
syrupy
];
pythonImportsCheck = [
"accuweather"
];
pythonImportsCheck = [ "accuweather" ];
meta = with lib; {
description = "Python wrapper for getting weather data from AccuWeather servers";