Unverified Commit 513e9e20 authored by tomberek's avatar tomberek Committed by GitHub
Browse files

usbsdmux: 24.1.1 -> 25.8 (#438658)

parents 08842363 ac3e9c99
Loading
Loading
Loading
Loading
+10 −7
Original line number Diff line number Diff line
@@ -7,12 +7,12 @@

python3Packages.buildPythonApplication rec {
  pname = "usbsdmux";
  version = "24.1.1";
  version = "25.8";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-OtGgToDGUr6pBu9+LS/DxaYw/9+Pd6jPhxVDAM22HB4=";
    hash = "sha256-/hDDEUvpdpUpg3ZVw8NWcDOLOtLu087Ki7FmGrDh9Gg=";
  };

  # Remove the wrong GROUP=plugdev.
@@ -22,7 +22,10 @@ python3Packages.buildPythonApplication rec {
      --replace-fail 'TAG+="uaccess", GROUP="plugdev"' 'TAG+="uaccess"'
  '';

  build-system = with python3Packages; [ setuptools ];
  build-system = with python3Packages; [
    setuptools
    setuptools-scm
  ];

  nativeBuildInputs = [
    udevCheckHook
@@ -36,11 +39,11 @@ python3Packages.buildPythonApplication rec {

  pythonImportsCheck = [ "usbsdmux" ];

  meta = with lib; {
  meta = {
    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;
    license = lib.licenses.lgpl21;
    maintainers = with lib.maintainers; [ emantor ];
    platforms = with lib.platforms; linux;
  };
}