python312Packages.accuweather: 2.1.1 -> 3.0.0

Diff: https://github.com/bieniu/accuweather/compare/refs/tags/2.1.1...3.0.0

Changelog: https://github.com/bieniu/accuweather/releases/tag/3.0.0
This commit is contained in:
Fabian Affolter 2024-04-19 09:32:53 +02:00
parent 1cbfe78fa9
commit 656eeaf39c
1 changed files with 13 additions and 6 deletions

View File

@ -8,23 +8,29 @@
, 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,6 +40,7 @@ buildPythonPackage rec {
pytest-asyncio
pytest-error-for-skips
pytestCheckHook
syrupy
];
pythonImportsCheck = [