Unverified Commit c57da208 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

python3Packages.icoextract: 0.1.5 -> 0.2.0 (#437741)

parents f8a6a1cd fbd471a3
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -6,14 +6,14 @@

python3Packages.buildPythonApplication rec {
  pname = "icoextract";
  version = "0.1.5";
  version = "0.2.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "jlu5";
    repo = "icoextract";
    rev = version;
    hash = "sha256-McVG8966NCEpzc9biawLvUgbQUtterkIud/9GwOeltI=";
    hash = "sha256-GJCe7oFUidJt21F4NmOXspxZGRQXIjQvFjFhMYsHLjk=";
  };

  build-system = with python3Packages; [ setuptools ];
@@ -29,9 +29,6 @@ python3Packages.buildPythonApplication rec {
  pythonImportsCheck = [ "icoextract" ];

  postInstall = ''
    substituteInPlace exe-thumbnailer.thumbnailer \
      --replace Exec=exe-thumbnailer Exec=$out/bin/exe-thumbnailer

    install -Dm644 exe-thumbnailer.thumbnailer -t $out/share/thumbnailers
  '';