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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools-scm,
# dependencies
capstone,
cmsis-pack-manager,
colorama,
importlib-metadata,
importlib-resources,
intelhex,
intervaltree,
lark,
natsort,
prettytable,
pyelftools,
pylink-square,
pyusb,
pyyaml,
typing-extensions,
hidapi,
# tests
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pyocd";
version = "0.41.0";
pyproject = true;
src = fetchFromGitHub {
owner = "pyocd";
repo = "pyOCD";
tag = "v${version}";
hash = "sha256-LQnvTSyXjIByB70thi6Gu4n5HdQQzIHHboWUvyVki5s=";
};
pythonRelaxDeps = [ "capstone" ];
pythonRemoveDeps = [ "libusb-package" ];
build-system = [ setuptools-scm ];
dependencies = [
capstone
cmsis-pack-manager
colorama
importlib-metadata
importlib-resources
intelhex
intervaltree
lark
natsort
prettytable
pyelftools
pylink-square
pyusb
pyyaml
typing-extensions
]
++ lib.optionals (!stdenv.hostPlatform.isLinux) [ hidapi ];
pythonImportsCheck = [ "pyocd" ];
disabledTests = [
# AttributeError: 'not_called' is not a valid assertion
# Upstream fix at https://github.com/pyocd/pyOCD/pull/1710
"test_transfer_err_not_flushed"
];
nativeCheckInputs = [ pytestCheckHook ];
meta = {
changelog = "https://github.com/pyocd/pyOCD/releases/tag/${src.tag}";
description = "Python library for programming and debugging Arm Cortex-M microcontrollers";
downloadPage = "https://github.com/pyocd/pyOCD";
homepage = "https://pyocd.io";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [
frogamic
sbruder
];
};
}
|