nixpkgs/pkgs/development/python-modules/solax/default.nix

42 lines
797 B
Nix
Raw Normal View History

2021-02-03 22:25:08 +00:00
{ lib
, aiohttp
, buildPythonPackage
, fetchPypi
, pytest-asyncio
, pytest-cov
, pytest-httpserver
, pytestCheckHook
, setuptools-scm
, voluptuous
}:
buildPythonPackage rec {
pname = "solax";
2021-08-08 17:28:17 +00:00
version = "0.2.7";
2021-02-03 22:25:08 +00:00
src = fetchPypi {
inherit pname version;
2021-08-08 17:28:17 +00:00
sha256 = "sha256-02cIOIow+eHBgYa7Dnl7b31j3I8WRxGuTpwHFKL4XYQ=";
2021-02-03 22:25:08 +00:00
};
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [ aiohttp voluptuous ];
checkInputs = [
pytest-asyncio
pytest-cov
pytest-httpserver
pytestCheckHook
];
pythonImportsCheck = [ "solax" ];
meta = with lib; {
description = "Python wrapper for the Solax Inverter API";
homepage = "https://github.com/squishykid/solax";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}