1{ lib
2, aiohttp
3, aresponses
4, buildPythonPackage
5, fetchFromGitHub
6, poetry-core
7, pytest-asyncio
8, pytestCheckHook
9, pythonOlder
10, yarl
11}:
12
13buildPythonPackage rec {
14 pname = "autarco";
15 version = "0.2.0";
16 format = "pyproject";
17
18 disabled = pythonOlder "3.9";
19
20 src = fetchFromGitHub {
21 owner = "klaasnicolaas";
22 repo = "python-autarco";
23 rev = "v${version}";
24 hash = "sha256-3f6N4b6WZPAUUQTuGeb20q0f7ZqDR+O24QRze5RpRlw=";
25 };
26
27 nativeBuildInputs = [
28 poetry-core
29 ];
30
31 propagatedBuildInputs = [
32 aiohttp
33 yarl
34 ];
35
36 nativeCheckInputs = [
37 aresponses
38 pytest-asyncio
39 pytestCheckHook
40 ];
41
42 postPatch = ''
43 # Upstream doesn't set a version for the pyproject.toml
44 substituteInPlace pyproject.toml \
45 --replace "0.0.0" "${version}" \
46 --replace "--cov" ""
47 '';
48
49 pythonImportsCheck = [
50 "autarco"
51 ];
52
53 meta = with lib; {
54 description = "Module for the Autarco Inverter";
55 homepage = "https://github.com/klaasnicolaas/python-autarco";
56 license = with licenses; [ mit ];
57 maintainers = with maintainers; [ fab ];
58 };
59}