blob: e4184589a3639185d9ce295750b3e5e9e4c892cf (
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
|
{
lib,
buildPythonPackage,
defusedxml,
fetchFromGitHub,
pytestCheckHook,
requests,
}:
buildPythonPackage rec {
pname = "pyobihai";
version = "1.4.2";
format = "setuptools";
src = fetchFromGitHub {
owner = "ejpenney";
repo = "pyobihai";
tag = version;
hash = "sha256-tDPu/ceH7+7AnxokADDfl+G56B0+ri8RxXxXEyWa61Q=";
};
propagatedBuildInputs = [
defusedxml
requests
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pyobihai" ];
meta = {
description = "Module to interact with Obihai devices";
homepage = "https://github.com/ejpenney/pyobihai";
changelog = "https://github.com/ejpenney/pyobihai/releases/tag/${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|