about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/security/pynitrokey/default.nix
blob: b50550e7436889f7dfc44d94ea5d4eb8402da8a9 (plain) (blame)
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
{ python3Packages, lib }:

with python3Packages;

buildPythonApplication rec {
  pname = "pynitrokey";
  version = "0.4.9";
  format = "flit";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-mhH6mVgLRX87PSGTFkj1TE75jU1lwcaRZWbC67T+vWo=";
  };

  propagatedBuildInputs = [
    click
    cryptography
    ecdsa
    fido2
    intelhex
    pyserial
    pyusb
    requests
    pygments
    python-dateutil
    urllib3
    cffi
    cbor
    nkdfu
  ];

  # 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";
  };
}