bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
122 lines
2.1 KiB
Nix
122 lines
2.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonRelaxDepsHook,
|
|
asn1crypto,
|
|
astunparse,
|
|
bincopy,
|
|
bitstring,
|
|
click,
|
|
click-command-tree,
|
|
click-option-group,
|
|
colorama,
|
|
crcmod,
|
|
cryptography,
|
|
deepmerge,
|
|
fastjsonschema,
|
|
hexdump,
|
|
libusbsio,
|
|
oscrypto,
|
|
platformdirs,
|
|
prettytable,
|
|
pylink-square,
|
|
pyocd,
|
|
pyocd-pemicro,
|
|
pypemicro,
|
|
pyserial,
|
|
requests,
|
|
ruamel-yaml,
|
|
setuptools,
|
|
sly,
|
|
spsdk,
|
|
testers,
|
|
typing-extensions,
|
|
ipykernel,
|
|
pytest-notebook,
|
|
pytestCheckHook,
|
|
voluptuous,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "spsdk";
|
|
version = "2.1.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nxp-mcuxpresso";
|
|
repo = "spsdk";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-cWz2zML/gb9l2C5VEBti+nX3ZLyGbLFyLZGjk5GfTJw=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pythonRelaxDepsHook
|
|
setuptools
|
|
];
|
|
|
|
pythonRelaxDeps = [
|
|
"click"
|
|
"cryptography"
|
|
"platformdirs"
|
|
"requests"
|
|
"typing-extensions"
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
asn1crypto
|
|
astunparse
|
|
bincopy
|
|
bitstring
|
|
click
|
|
click-command-tree
|
|
click-option-group
|
|
colorama
|
|
crcmod
|
|
cryptography
|
|
deepmerge
|
|
fastjsonschema
|
|
hexdump
|
|
libusbsio
|
|
oscrypto
|
|
platformdirs
|
|
prettytable
|
|
pylink-square
|
|
pyocd
|
|
pyocd-pemicro
|
|
pypemicro
|
|
pyserial
|
|
requests
|
|
ruamel-yaml
|
|
sly
|
|
typing-extensions
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
ipykernel
|
|
pytest-notebook
|
|
pytestCheckHook
|
|
voluptuous
|
|
];
|
|
|
|
disabledTests = [
|
|
"test_nxpcrypto_create_signature_algorithm"
|
|
"test_nxpimage_sb31_kaypair_not_matching"
|
|
];
|
|
|
|
pythonImportsCheck = [ "spsdk" ];
|
|
|
|
passthru.tests.version = testers.testVersion { package = spsdk; };
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/nxp-mcuxpresso/spsdk/blob/${src.rev}/docs/release_notes.rst";
|
|
description = "NXP Secure Provisioning SDK";
|
|
homepage = "https://github.com/nxp-mcuxpresso/spsdk";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [
|
|
frogamic
|
|
sbruder
|
|
];
|
|
mainProgram = "spsdk";
|
|
};
|
|
}
|