nixpkgs/pkgs/development/python-modules/psutil-home-assistant/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

37 lines
843 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, psutil
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "psutil-home-assistant";
version = "0.0.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "home-assistant-libs";
repo = "psutil-home-assistant";
rev = "refs/tags/${version}";
hash = "sha256-6bj1aaa/JYZFVwUAJfxISRoldgTmumCG8WrlKhkb6kM=";
};
propagatedBuildInputs = [
psutil
];
nativeCheckInputs = [
pytestCheckHook
];
meta = with lib; {
changelog = "https://github.com/home-assistant-libs/psutil-home-assistant/releases/tag/${version}";
description = "Wrapper of psutil that removes reliance on globals";
homepage = "https://github.com/home-assistant-libs/psutil-home-assistant";
license = licenses.asl20;
maintainers = teams.home-assistant.members;
};
}