blob: b1205d610d77be4ab95045f9c31d8737b2209fe2 (
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
42
43
44
45
46
47
48
49
50
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
flask,
mock,
prettytable,
pyserial,
pytestCheckHook,
requests,
stevedore,
}:
buildPythonPackage {
pname = "pynx584";
version = "0.8.2";
pyproject = true;
src = fetchFromGitHub {
owner = "kk7ds";
repo = "pynx584";
tag = "0.8.2";
hash = "sha256-q5ra7tH4kaBrw0VAiyMsmWOkVhA7Y6bRuFP8dlxQjsE=";
};
build-system = [ setuptools ];
dependencies = [
flask
prettytable
pyserial
requests
stevedore
];
nativeCheckInputs = [
mock
pytestCheckHook
];
pythonImportsCheck = [ "nx584" ];
meta = {
description = "Python package for communicating to NX584/NX8E interfaces";
homepage = "https://github.com/kk7ds/pynx584";
license = with lib.licenses; [ gpl3Only ];
maintainers = with lib.maintainers; [ fab ];
};
}
|