lol
0
fork

Configure Feed

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

python3Packages.psutil-home-assistant: init at 0.0.1

+38
+36
pkgs/development/python-modules/psutil-home-assistant/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , psutil 5 + , pytestCheckHook 6 + }: 7 + 8 + 9 + buildPythonPackage rec { 10 + pname = "psutil-home-assistant"; 11 + version = "0.0.1"; 12 + format = "setuptools"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "home-assistant-libs"; 16 + repo = "psutil-home-assistant"; 17 + rev = "refs/tags/${version}"; 18 + hash = "sha256-6bj1aaa/JYZFVwUAJfxISRoldgTmumCG8WrlKhkb6kM="; 19 + }; 20 + 21 + propagatedBuildInputs = [ 22 + psutil 23 + ]; 24 + 25 + checkInputs = [ 26 + pytestCheckHook 27 + ]; 28 + 29 + meta = with lib; { 30 + changelog = "https://github.com/home-assistant-libs/psutil-home-assistant/releases/tag/${version}"; 31 + description = "Wrapper of psutil that removes reliance on globals"; 32 + homepage = "https://github.com/home-assistant-libs/psutil-home-assistant"; 33 + license = licenses.asl20; 34 + maintainers = teams.home-assistant.members; 35 + }; 36 + }
+2
pkgs/top-level/python-packages.nix
··· 7245 7245 inherit (pkgs.darwin.apple_sdk.frameworks) IOKit; 7246 7246 }; 7247 7247 7248 + psutil-home-assistant = callPackage ../development/python-modules/psutil-home-assistant { }; 7249 + 7248 7250 psycopg = callPackage ../development/python-modules/psycopg { }; 7249 7251 7250 7252 psycopg2 = callPackage ../development/python-modules/psycopg2 { };