mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 08:43:06 +00:00
53 lines
1016 B
Nix
53 lines
1016 B
Nix
{ python3Packages, lib, nrfutil }:
|
|
|
|
with python3Packages;
|
|
|
|
buildPythonApplication rec {
|
|
pname = "pynitrokey";
|
|
version = "0.4.27";
|
|
format = "flit";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-aWQhMvATcDtyBtj38mGnypkKIqKQgneBzWDh5o/5Wkc=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
click
|
|
cryptography
|
|
ecdsa
|
|
fido2
|
|
intelhex
|
|
nrfutil
|
|
pyserial
|
|
pyusb
|
|
requests
|
|
pygments
|
|
python-dateutil
|
|
spsdk
|
|
urllib3
|
|
cffi
|
|
cbor
|
|
nkdfu
|
|
];
|
|
|
|
# spsdk is patched to allow for newer cryptography
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace "cryptography >=3.4.4,<37" "cryptography"
|
|
'';
|
|
|
|
# no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "pynitrokey" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python client for Nitrokey devices";
|
|
homepage = "https://github.com/Nitrokey/pynitrokey";
|
|
license = with licenses; [ asl20 mit ];
|
|
maintainers = with maintainers; [ frogamic ];
|
|
mainProgram = "nitropy";
|
|
};
|
|
}
|