2023-07-15 17:15:38 +00:00
|
|
|
{ lib, python3Packages, fetchPypi }:
|
2020-12-25 13:55:36 +00:00
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "usbsdmux";
|
2024-01-25 14:12:00 +00:00
|
|
|
version = "24.1";
|
2020-12-25 13:55:36 +00:00
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
src = fetchPypi {
|
2020-12-25 13:55:36 +00:00
|
|
|
inherit pname version;
|
2024-01-25 14:12:00 +00:00
|
|
|
sha256 = "sha256-Qt60QKRadFoPiHjmpx9tmid4K+6ixCN7JD7JHcT5MDE=";
|
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;
|
|
|
|
};
|
|
|
|
}
|