Merge pull request #234694 from fabaff/solax-bump
python311Packages.solax: 0.3.0 -> 0.3.1
This commit is contained in:
commit
e2856d0fae
1 changed files with 16 additions and 5 deletions
|
@ -6,22 +6,31 @@
|
||||||
, pytest-cov
|
, pytest-cov
|
||||||
, pytest-httpserver
|
, pytest-httpserver
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
|
, pythonOlder
|
||||||
, setuptools-scm
|
, setuptools-scm
|
||||||
, voluptuous
|
, voluptuous
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "solax";
|
pname = "solax";
|
||||||
version = "0.3.0";
|
version = "0.3.1";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.8";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
hash = "sha256-lqzFY2Rfmc/9KUuFfq07DZkIIS2cJ1JqZ/8gP3+pu5U=";
|
hash = "sha256-kseU6JK00GTPyqdWku2ceT5/mChMVVPgEEib3BmjI/g=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ setuptools-scm ];
|
nativeBuildInputs = [
|
||||||
|
setuptools-scm
|
||||||
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [ aiohttp voluptuous ];
|
propagatedBuildInputs = [
|
||||||
|
aiohttp
|
||||||
|
voluptuous
|
||||||
|
];
|
||||||
|
|
||||||
nativeCheckInputs = [
|
nativeCheckInputs = [
|
||||||
pytest-asyncio
|
pytest-asyncio
|
||||||
|
@ -30,7 +39,9 @@ buildPythonPackage rec {
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonImportsCheck = [ "solax" ];
|
pythonImportsCheck = [
|
||||||
|
"solax"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Python wrapper for the Solax Inverter API";
|
description = "Python wrapper for the Solax Inverter API";
|
||||||
|
|
Loading…
Reference in a new issue