python311Packages.solax: 0.3.2 -> 0.3.3

Changelog: https://github.com/squishykid/solax/releases/tag/v0.3.3
This commit is contained in:
Fabian Affolter 2024-03-04 08:53:26 +01:00
parent bec1afdaee
commit a3d6d16b93

View File

@ -1,9 +1,9 @@
{ lib
, aiohttp
, async-timeout
, buildPythonPackage
, fetchPypi
, pytest-asyncio
, pytest-cov
, pytest-httpserver
, pytestCheckHook
, pythonOlder
@ -13,14 +13,14 @@
buildPythonPackage rec {
pname = "solax";
version = "0.3.2";
format = "setuptools";
version = "0.3.3";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-7UDTG8rw9XJd5LPqcAe2XyE7DQa96dBj9YOcgW+/aFc=";
hash = "sha256-+e0z65qMjj1vQ3BR6kmLs+S5CF5chSaQ3mHQPIo++bQ=";
};
nativeBuildInputs = [
@ -29,12 +29,12 @@ buildPythonPackage rec {
propagatedBuildInputs = [
aiohttp
async-timeout
voluptuous
];
nativeCheckInputs = [
pytest-asyncio
pytest-cov
pytest-httpserver
pytestCheckHook
];
@ -43,9 +43,16 @@ buildPythonPackage rec {
"solax"
];
disabledTests = [
# Tests require network access
"test_discovery"
"test_smoke"
];
meta = with lib; {
description = "Python wrapper for the Solax Inverter API";
homepage = "https://github.com/squishykid/solax";
changelog = "https://github.com/squishykid/solax/releases/tag/v${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};