evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / wo / woeusb-ng / package.nix
blob0858422be3a0c45f804952f137eae35125d22560
1 { lib
2 , python3Packages
3 , fetchFromGitHub
4 , wrapGAppsHook3
5 , p7zip
6 , parted
7 , grub2
8 }:
10 with python3Packages;
12 buildPythonApplication rec {
13   pname = "woeusb-ng";
14   version = "0.2.12";
16   src = fetchFromGitHub {
17     owner = "WoeUSB";
18     repo = "WoeUSB-ng";
19     rev = "v${version}";
20     hash = "sha256-2opSiXbbk0zDRt6WqMh97iAt6/KhwNDopOas+OZn6TU=";
21   };
23   postPatch = ''
24     substituteInPlace setup.py WoeUSB/*.py miscellaneous/* \
25       --replace "/usr/local/" "$out/" \
26       --replace "/usr/" "$out/"
27   '';
29   nativeBuildInputs = [
30     wrapGAppsHook3
31   ];
33   propagatedBuildInputs = [
34     p7zip
35     parted
36     grub2
37     termcolor
38     wxpython
39     six
40   ];
42   preConfigure = ''
43     mkdir -p $out/bin $out/share/applications $out/share/polkit-1/actions
44   '';
46   # Unable to access the X Display, is $DISPLAY set properly?
47   doCheck = false;
49   meta = with lib; {
50     description = "Tool to create a Windows USB stick installer from a real Windows DVD or image";
51     homepage = "https://github.com/WoeUSB/WoeUSB-ng";
52     license = licenses.gpl3Plus;
53     maintainers = with maintainers; [ stunkymonkey ];
54     platforms = platforms.linux;
55   };