Merge pull request #110368 from fabaff/python-wink

authored by Sandro and committed by GitHub 39b25bbb 1db57db7

+31 -1
+28
pkgs/development/python-modules/python-wink/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , requests 5 + }: 6 + 7 + buildPythonPackage rec { 8 + pname = "python-wink"; 9 + version = "1.10.5"; 10 + 11 + src = fetchPypi { 12 + inherit pname version; 13 + sha256 = "1r6qabnqxyy3llnj10z60d4w9pg2zabysl3l7znpy1adss4ywxl0"; 14 + }; 15 + 16 + propagatedBuildInputs = [ requests ]; 17 + 18 + # Project has no tests 19 + doCheck = false; 20 + pythonImportsCheck = [ "pywink" ]; 21 + 22 + meta = with lib; { 23 + description = "Python implementation of the Wink API"; 24 + homepage = "https://github.com/python-wink/python-wink"; 25 + license = with licenses; [ mit ]; 26 + maintainers = with maintainers; [ fab ]; 27 + }; 28 + }
+1 -1
pkgs/servers/home-assistant/component-packages.nix
··· 927 "whois" = ps: with ps; [ python-whois ]; 928 "wiffi" = ps: with ps; [ ]; # missing inputs: wiffi 929 "wilight" = ps: with ps; [ pywilight ]; 930 - "wink" = ps: with ps; [ aiohttp-cors pubnubsub-handler ]; # missing inputs: python-wink 931 "wirelesstag" = ps: with ps; [ ]; # missing inputs: wirelesstagpy 932 "withings" = ps: with ps; [ aiohttp-cors ]; # missing inputs: withings-api 933 "wled" = ps: with ps; [ wled ];
··· 927 "whois" = ps: with ps; [ python-whois ]; 928 "wiffi" = ps: with ps; [ ]; # missing inputs: wiffi 929 "wilight" = ps: with ps; [ pywilight ]; 930 + "wink" = ps: with ps; [ aiohttp-cors pubnubsub-handler python-wink ]; 931 "wirelesstag" = ps: with ps; [ ]; # missing inputs: wirelesstagpy 932 "withings" = ps: with ps; [ aiohttp-cors ]; # missing inputs: withings-api 933 "wled" = ps: with ps; [ wled ];
+2
pkgs/top-level/python-packages.nix
··· 6349 6350 python-wifi = callPackage ../development/python-modules/python-wifi { }; 6351 6352 python-xmp-toolkit = callPackage ../development/python-modules/python-xmp-toolkit { }; 6353 6354 pyeverlights = callPackage ../development/python-modules/pyeverlights { };
··· 6349 6350 python-wifi = callPackage ../development/python-modules/python-wifi { }; 6351 6352 + python-wink = callPackage ../development/python-modules/python-wink { }; 6353 + 6354 python-xmp-toolkit = callPackage ../development/python-modules/python-xmp-toolkit { }; 6355 6356 pyeverlights = callPackage ../development/python-modules/pyeverlights { };