nixpkgs/pkgs/development/python-modules/hass-nabucasa/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

61 lines
1.1 KiB
Nix

{ lib
, acme
, aiohttp
, asynctest
, atomicwrites-homeassistant
, attrs
, buildPythonPackage
, fetchFromGitHub
, pycognito
, pytest-aiohttp
, pytestCheckHook
, snitun
, warrant
}:
buildPythonPackage rec {
pname = "hass-nabucasa";
version = "0.61.0";
src = fetchFromGitHub {
owner = "nabucasa";
repo = pname;
rev = version;
sha256 = "sha256-KG2eCwGZWVtepJQdsSwFziWsT1AbV6rYWRIO/I/CR8g=";
};
postPatch = ''
substituteInPlace setup.py \
--replace "acme==" "acme>=" \
--replace "pycognito==" "pycognito>=" \
--replace "snitun==" "snitun>=" \
'';
propagatedBuildInputs = [
acme
aiohttp
atomicwrites-homeassistant
attrs
pycognito
snitun
warrant
];
doCheck = lib.versionAtLeast pytest-aiohttp.version "1.0.0";
nativeCheckInputs = [
asynctest
pytest-aiohttp
pytestCheckHook
];
pythonImportsCheck = [ "hass_nabucasa" ];
meta = with lib; {
homepage = "https://github.com/NabuCasa/hass-nabucasa";
description = "Python module for the Home Assistant cloud integration";
license = licenses.gpl3Only;
maintainers = with maintainers; [ Scriptkiddi ];
};
}