lol

Merge pull request #127543 from fabaff/pymill

authored by

Martin Weinelt and committed by
GitHub
05657665 c5a97e66

+41 -1
+37
pkgs/development/python-modules/millheater/default.nix
··· 1 + { lib 2 + , aiohttp 3 + , async-timeout 4 + , buildPythonPackage 5 + , fetchFromGitHub 6 + , pythonOlder 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "millheater"; 11 + version = "0.4.1"; 12 + disabled = pythonOlder "3.6"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "Danielhiversen"; 16 + repo = "pymill"; 17 + rev = version; 18 + sha256 = "0dypv4xwdqcv45aibfkik2slm9r8y7pd2gwqa49kn96f40kdfwb0"; 19 + }; 20 + 21 + propagatedBuildInputs = [ 22 + aiohttp 23 + async-timeout 24 + ]; 25 + 26 + # Project has no tests 27 + doCheck = false; 28 + 29 + pythonImportsCheck = [ "mill" ]; 30 + 31 + meta = with lib; { 32 + description = "Python library for Mill heater devices"; 33 + homepage = "https://github.com/Danielhiversen/pymill"; 34 + license = with licenses; [ mit ]; 35 + maintainers = with maintainers; [ fab ]; 36 + }; 37 + }
+1 -1
pkgs/servers/home-assistant/component-packages.nix
··· 510 510 "microsoft_face_identify" = ps: with ps; [ aiohttp-cors ]; 511 511 "miflora" = ps: with ps; [ bluepy ]; # missing inputs: miflora 512 512 "mikrotik" = ps: with ps; [ librouteros ]; 513 - "mill" = ps: with ps; [ ]; # missing inputs: millheater 513 + "mill" = ps: with ps; [ millheater ]; 514 514 "min_max" = ps: with ps; [ ]; 515 515 "minecraft_server" = ps: with ps; [ aiodns getmac mcstatus ]; 516 516 "minio" = ps: with ps; [ minio ];
+1
pkgs/servers/home-assistant/default.nix
··· 515 515 "microsoft_face_detect" 516 516 "microsoft_face_identify" 517 517 "mikrotik" 518 + "mill" 518 519 "min_max" 519 520 "minecraft_server" 520 521 "minio"
+2
pkgs/top-level/python-packages.nix
··· 4385 4385 4386 4386 milksnake = callPackage ../development/python-modules/milksnake { }; 4387 4387 4388 + millheater = callPackage ../development/python-modules/millheater { }; 4389 + 4388 4390 minidb = callPackage ../development/python-modules/minidb { }; 4389 4391 4390 4392 minidump = callPackage ../development/python-modules/minidump { };