blob: e8564038e94e97aa0554738eb07655d2bb60a966 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
}:
buildPythonPackage rec {
pname = "refoss-ha";
version = "1.2.4";
pyproject = true;
src = fetchFromGitHub {
owner = "ashionky";
repo = "refoss_ha";
rev = "refs/tags/v${version}";
hash = "sha256-DFP2lEZkjW5L94CnhJS04ydM66gnKzvgpiXOAejs768=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "refoss_ha" ];
# upstream has no tests
doCheck = false;
meta = {
changelog = "https://github.com/ashionky/refoss_ha/releases/tag/v${version}";
description = "Refoss support for Home Assistant";
homepage = "https://github.com/ashionky/refoss_ha";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|