2020-12-25 13:55:36 +00:00
|
|
|
{ lib, python3Packages }:
|
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "usbsdmux";
|
2021-08-05 21:33:18 +00:00
|
|
|
version = "0.2.1";
|
2020-12-25 13:55:36 +00:00
|
|
|
|
|
|
|
src = python3Packages.fetchPypi {
|
|
|
|
inherit pname version;
|
2021-08-05 21:33:18 +00:00
|
|
|
sha256 = "sha256-gCxwR5jxzkH22B6nxBwAd0HpwWMIj/zp5VROJ0IWq7c=";
|
2020-12-25 13:55:36 +00:00
|
|
|
};
|
|
|
|
|
2021-04-12 18:23:04 +00:00
|
|
|
# usbsdmux is not meant to be used as an importable module and has no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
2020-12-25 13:55:36 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|