blob: f387f4358048e97ad957cdebf3dec291147e0bba (
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
|
{
aiohttp,
buildPythonPackage,
fetchFromGitHub,
lib,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "librehardwaremonitor-api";
version = "1.6.0";
pyproject = true;
src = fetchFromGitHub {
owner = "Sab44";
repo = "librehardwaremonitor-api";
tag = "v${version}";
hash = "sha256-dyhS7vb+qcumtWZsj3G3x66KhHUVDQxMG8+2GngkK70=";
};
build-system = [ setuptools ];
dependencies = [
aiohttp
];
pythonImportsCheck = [ "librehardwaremonitor_api" ];
nativeCheckInputs = [
pytestCheckHook
];
meta = {
description = "Python API client for LibreHardwareMonitor";
homepage = "https://github.com/Sab44/librehardwaremonitor-api";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.dotlambda ];
};
}
|