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