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

This commit is contained in:
dotlambda
2025-09-30 06:54:28 +00:00
committed by GitHub
+2 -5
View File
@@ -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
'';