Merge pull request #234694 from fabaff/solax-bump

python311Packages.solax: 0.3.0 -> 0.3.1

authored by Fabian Affolter and committed by GitHub e2856d0f 5f7e1613

+16 -5
+16 -5
pkgs/development/python-modules/solax/default.nix
··· 6 , pytest-cov 7 , pytest-httpserver 8 , pytestCheckHook 9 , setuptools-scm 10 , voluptuous 11 }: 12 13 buildPythonPackage rec { 14 pname = "solax"; 15 - version = "0.3.0"; 16 17 src = fetchPypi { 18 inherit pname version; 19 - hash = "sha256-lqzFY2Rfmc/9KUuFfq07DZkIIS2cJ1JqZ/8gP3+pu5U="; 20 }; 21 22 - nativeBuildInputs = [ setuptools-scm ]; 23 24 - propagatedBuildInputs = [ aiohttp voluptuous ]; 25 26 nativeCheckInputs = [ 27 pytest-asyncio ··· 30 pytestCheckHook 31 ]; 32 33 - pythonImportsCheck = [ "solax" ]; 34 35 meta = with lib; { 36 description = "Python wrapper for the Solax Inverter API";
··· 6 , pytest-cov 7 , pytest-httpserver 8 , pytestCheckHook 9 + , pythonOlder 10 , setuptools-scm 11 , voluptuous 12 }: 13 14 buildPythonPackage rec { 15 pname = "solax"; 16 + version = "0.3.1"; 17 + format = "setuptools"; 18 + 19 + disabled = pythonOlder "3.8"; 20 21 src = fetchPypi { 22 inherit pname version; 23 + hash = "sha256-kseU6JK00GTPyqdWku2ceT5/mChMVVPgEEib3BmjI/g="; 24 }; 25 26 + nativeBuildInputs = [ 27 + setuptools-scm 28 + ]; 29 30 + propagatedBuildInputs = [ 31 + aiohttp 32 + voluptuous 33 + ]; 34 35 nativeCheckInputs = [ 36 pytest-asyncio ··· 39 pytestCheckHook 40 ]; 41 42 + pythonImportsCheck = [ 43 + "solax" 44 + ]; 45 46 meta = with lib; { 47 description = "Python wrapper for the Solax Inverter API";