lol

python3Packages.pyhomepilot: init at 0.0.3

authored by

Fabian Affolter and committed by
Jonathan Ringer
b99a500a 5b45b2fa

+37
+35
pkgs/development/python-modules/pyhomepilot/default.nix
··· 1 + { lib 2 + , aiohttp 3 + , buildPythonPackage 4 + , fetchFromGitHub 5 + , pythonOlder 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "pyhomepilot"; 10 + version = "0.0.3"; 11 + disabled = pythonOlder "3.6"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "nico0302"; 15 + repo = pname; 16 + rev = "v${version}"; 17 + sha256 = "00gmqx8cwsd15iccnlr8ypgqrdg6nw9ha518cfk7pyp8vhw1ziwy"; 18 + }; 19 + 20 + propagatedBuildInputs = [ 21 + aiohttp 22 + ]; 23 + 24 + # Project has no tests 25 + doCheck = false; 26 + 27 + pythonImportsCheck = [ "pyhomepilot" ]; 28 + 29 + meta = with lib; { 30 + description = "Python module to communicate with the Rademacher HomePilot API"; 31 + homepage = "https://github.com/nico0302/pyhomepilot"; 32 + license = with licenses; [ mit ]; 33 + maintainers = with maintainers; [ fab ]; 34 + }; 35 + }
+2
pkgs/top-level/python-packages.nix
··· 6000 6000 6001 6001 pyhomematic = callPackage ../development/python-modules/pyhomematic { }; 6002 6002 6003 + pyhomepilot = callPackage ../development/python-modules/pyhomepilot { }; 6004 + 6003 6005 pyhs100 = callPackage ../development/python-modules/pyhs100 { }; 6004 6006 6005 6007 pyi2cflash = callPackage ../development/python-modules/pyi2cflash { };