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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build
pythonAtLeast,
setuptools,
setuptools-scm,
cython,
# dependencies
colorama,
configobj,
ecpy,
fastdtw,
libusb1,
numpy,
pyserial,
tqdm,
# install
udevCheckHook,
# check
writableTmpDirAsHomeHook,
pytestCheckHook,
}:
# Usage:
# In NixOS, add the package to services.udev.packages for non-root plugdev
# users to get device access permission:
# services.udev.packages = [ pkgs.python3Packages.chipwhisperer ];
buildPythonPackage rec {
pname = "chipwhisperer";
version = "5.7.0";
src = fetchFromGitHub {
owner = "newaetech";
repo = "chipwhisperer";
tag = version;
hash = "sha256-C7QP044QEP7vmz1lMseLtMTYoKn5SoFV/q9URY7yQ6I=";
};
pyproject = true;
build-system = [
setuptools
setuptools-scm
];
nativeBuildInputs = [
cython
];
pythonRelaxDeps = [
"numpy"
];
dependencies = [
colorama
configobj
ecpy
fastdtw
libusb1
pyserial
tqdm
];
nativeInstallCheckInputs = [
udevCheckHook
];
postInstall = ''
# Install udev rules
# The 50-newae.rules file from the repo isn't directly installed, since it
# installs to the chipwhisperer group (and not to uaccess)
mkdir -p $out/etc/udev/rules.d
cat <<EOF > $out/etc/udev/rules.d/50-newae.rules
SUBSYSTEMS=="usb", ATTRS{idVendor}=="2b3e", ATTRS{idProduct}=="*", TAG+="uaccess"
SUBSYSTEM=="tty", ATTRS{idVendor}=="2b3e", ATTRS{idProduct}=="*", TAG+="uaccess", SYMLINK+="cw_serial%n"
SUBSYSTEM=="tty", ATTRS{idVendor}=="03eb", ATTRS{idProduct}=="6124", TAG+="uaccess", SYMLINK+="cw_bootloader%n"
EOF
'';
pythonImportsCheck = [ "chipwhisperer" ];
nativeCheckInputs = [
writableTmpDirAsHomeHook
pytestCheckHook
];
enabledTestPaths = [
# All other tests require connected hardware
# Error: "Could not find ChipWhisperer. Is it connected?"
# See: https://chipwhisperer.readthedocs.io/en/latest/contributing.html#unit-tests
"tests/test_api.py"
];
disabledTests = [ "TestCPA" ]; # Tries to open a tutorial project
meta = {
description = "Toolchain for side-channel power analysis and glitching attacks";
homepage = "https://github.com/newaetech/chipwhisperer";
changelog = "https://github.com/newaetech/chipwhisperer/releases/tag/${version}";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.krishnans2006 ];
};
}
|