about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pycyphal/default.nix
blob: b5516bc144e0914a80103a4101f08a6c6381be2c (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
45
46
47
48
49
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, can
, cobs
, libpcap
, nunavut
, numpy
, pyserial
}:

buildPythonPackage rec {
  pname = "pycyphal";
  version = "1.15.2";
  format = "pyproject";

  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-KVX+DwcJp1sjpcG1Utl9me1LwWDZPof+O6hoUt1xlXA=";
  };

  propagatedBuildInputs = [
    can
    cobs
    libpcap
    numpy
    nunavut
    pyserial
  ];

  # Can't seem to run the tests on nix
  doCheck = false;
  pythonImportsCheck = [
    "pycyphal"
  ];

  meta = with lib; {
    description = "A full-featured implementation of the Cyphal protocol stack in Python";
    longDescription = ''
      Cyphal is an open technology for real-time intravehicular distributed computing and communication based on modern networking standards (Ethernet, CAN FD, etc.).
    '';
    homepage = "https://opencyphal.org/";
    license = licenses.mit;
    maintainers = [ teams.ororatech ];
  };
}