nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, python3Packages, fetchPypi }:
2
3python3Packages.buildPythonApplication rec {
4 pname = "usbsdmux";
5 version = "0.2.1";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "sha256-gCxwR5jxzkH22B6nxBwAd0HpwWMIj/zp5VROJ0IWq7c=";
10 };
11
12 # usbsdmux is not meant to be used as an importable module and has no tests
13 doCheck = false;
14
15 meta = with lib; {
16 description = "Control software for the LXA USB-SD-Mux";
17 homepage = "https://github.com/linux-automation/usbsdmux";
18 license = licenses.lgpl21;
19 maintainers = with maintainers; [ emantor ];
20 platforms = with platforms; linux;
21 };
22}