lol

python3Packages.tesla-wall-connector: init at 1.0.0

authored by

Fabian Affolter and committed by
Jonathan Ringer
6af367e1 dd15c5ce

+49
+47
pkgs/development/python-modules/tesla-wall-connector/default.nix
··· 1 + { lib 2 + , aiohttp 3 + , backoff 4 + , aioresponses 5 + , buildPythonPackage 6 + , fetchPypi 7 + , pytest-aiohttp 8 + , pytestCheckHook 9 + , poetry-core 10 + , pythonOlder 11 + }: 12 + 13 + buildPythonPackage rec { 14 + pname = "tesla-wall-connector"; 15 + version = "1.0.0"; 16 + format = "pyproject"; 17 + 18 + disabled = pythonOlder "3.8"; 19 + 20 + src = fetchPypi { 21 + inherit pname version; 22 + sha256 = "PVgM6tC8jy/tXytkAVC0Y4Oatap5YFA3vpkUgAdyTxM="; 23 + }; 24 + 25 + nativeBuildInputs = [ 26 + poetry-core 27 + ]; 28 + 29 + propagatedBuildInputs = [ 30 + aiohttp 31 + backoff 32 + ]; 33 + 34 + # https://github.com/einarhauks/tesla-wall-connector/issues/1 35 + doCheck = false; 36 + 37 + pythonImportsCheck = [ 38 + "tesla_wall_connector" 39 + ]; 40 + 41 + meta = with lib; { 42 + description = "Python library for communicating with a Tesla Wall Connector"; 43 + homepage = "https://github.com/einarhauks/tesla-wall-connector"; 44 + license = with licenses; [ mit ]; 45 + maintainers = with maintainers; [ fab ]; 46 + }; 47 + }
+2
pkgs/top-level/python-packages.nix
··· 9305 9305 9306 9306 tern = callPackage ../development/python-modules/tern { }; 9307 9307 9308 + tesla-wall-connector = callPackage ../development/python-modules/tesla-wall-connector { }; 9309 + 9308 9310 teslajsonpy = callPackage ../development/python-modules/teslajsonpy { }; 9309 9311 9310 9312 tess = callPackage ../development/python-modules/tess { };