Unverified Commit 591e5f24 authored by K900's avatar K900 Committed by GitHub
Browse files

umu-launcher-unwrapped: 1.2.9 -> 1.3.0 (#463925)

parents 74286fbb 000e91be
Loading
Loading
Loading
Loading
+14 −8
Original line number Diff line number Diff line
@@ -3,23 +3,24 @@
  cargo,
  fetchFromGitHub,
  lib,
  nix-update-script,
  python3Packages,
  rustPlatform,
  scdoc,
  writableTmpDirAsHomeHook,
  withTruststore ? true,
  withDeltaUpdates ? true,
  versionCheckHook,
  nix-update-script,
}:
python3Packages.buildPythonPackage rec {
  pname = "umu-launcher-unwrapped";
  version = "1.2.9";
  version = "1.3.0";

  src = fetchFromGitHub {
    owner = "Open-Wine-Components";
    repo = "umu-launcher";
    tag = version;
    hash = "sha256-nqI2XmMS28dvYrgD9kh7Xc510CvG7ifIybj+HlrU3qI=";
    hash = "sha256-ELFOffP3KabvyOu4Fl7Z4zvPhamZrmhuuqz1aTYdbnE=";
  };

  cargoDeps = rustPlatform.fetchCargoVendor {
@@ -34,13 +35,15 @@ python3Packages.buildPythonPackage rec {

  nativeBuildInputs = [
    cargo
    python3Packages.build
    python3Packages.installer
    python3Packages.hatchling
    python3Packages.hatch-vcs
    rustPlatform.cargoSetupHook
    scdoc
  ];
  ]
  ++ (with python3Packages; [
    build
    hatchling
    hatch-vcs
    installer
  ]);

  pythonPath =
    with python3Packages;
@@ -84,6 +87,9 @@ python3Packages.buildPythonPackage rec {
    "test_parse_args_noopts"
  ];

  doInstallCheck = true;
  nativeInstallCheckInputs = [ versionCheckHook ];

  passthru.updateScript = nix-update-script { };

  meta = {