lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.aiohwenergy: init at 0.4.0

+42
+40
pkgs/development/python-modules/aiohwenergy/default.nix
··· 1 + { lib 2 + , aiohttp 3 + , buildPythonPackage 4 + , fetchFromGitHub 5 + , pytestCheckHook 6 + , pythonOlder 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "aiohwenergy"; 11 + version = "0.4.0"; 12 + format = "setuptools"; 13 + 14 + disabled = pythonOlder "3.7"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "DCSBL"; 18 + repo = pname; 19 + rev = version; 20 + sha256 = "Rs7kD+jN/z0j4KmkitquB+cm2UcYG87YHczZR0A4axI="; 21 + }; 22 + 23 + propagatedBuildInputs = [ 24 + aiohttp 25 + ]; 26 + 27 + # Project has no tests 28 + doCheck = false; 29 + 30 + pythonImportsCheck = [ 31 + "aiohwenergy" 32 + ]; 33 + 34 + meta = with lib; { 35 + description = "Python library to interact with the HomeWizard Energy devices API"; 36 + homepage = "https://github.com/DCSBL/aiohwenergy"; 37 + license = licenses.asl20; 38 + maintainers = with maintainers; [ fab ]; 39 + }; 40 + }
+2
pkgs/top-level/python-packages.nix
··· 317 317 318 318 aiohue = callPackage ../development/python-modules/aiohue { }; 319 319 320 + aiohwenergy = callPackage ../development/python-modules/aiohwenergy { }; 321 + 320 322 aioimaplib = callPackage ../development/python-modules/aioimaplib { }; 321 323 322 324 aioinflux = callPackage ../development/python-modules/aioinflux { };