summary refs log tree commit diff
path: root/pkgs/development/tools/misc/usbsdmux/default.nix
blob: 07db23607ceb8c9c10cf506f3834f39db5aa5ac2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, python3Packages }:

python3Packages.buildPythonApplication rec {
  pname = "usbsdmux";
  version = "0.2.1";

  src = python3Packages.fetchPypi {
    inherit pname version;
    sha256 = "sha256-gCxwR5jxzkH22B6nxBwAd0HpwWMIj/zp5VROJ0IWq7c=";
  };

  # usbsdmux is not meant to be used as an importable module and has no tests
  doCheck = false;

  meta = with lib; {
    description = "Control software for the LXA USB-SD-Mux";
    homepage = "https://github.com/linux-automation/usbsdmux";
    license = licenses.lgpl21;
    maintainers = with maintainers; [ emantor ];
    platforms = with platforms; linux;
  };
}