blob: b28342011276cd8cd8de02783a5b3c7780323ae3 (
plain)
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
35
36
37
38
39
40
41
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
crc,
setuptools,
pytest-asyncio_0,
}:
buildPythonPackage rec {
pname = "pyaprilaire";
version = "0.9.1";
pyproject = true;
src = fetchFromGitHub {
owner = "chamberlain2007";
repo = "pyaprilaire";
tag = version;
hash = "sha256-5f/vo8aDQ0HVKXW/yiNYyH3zFnwvP5kv0ZEglvB5quo=";
};
build-system = [ setuptools ];
dependencies = [ crc ];
pythonImportsCheck = [ "pyaprilaire" ];
nativeCheckInputs = [
pytestCheckHook
pytest-asyncio_0
];
meta = {
changelog = "https://github.com/chamberlain2007/pyaprilaire/releases/tag/${src.tag}";
description = "Python library for interacting with Aprilaire thermostats";
homepage = "https://github.com/chamberlain2007/pyaprilaire";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ pyrox0 ];
};
}
|