Merge pull request #290350 from r-ryantm/auto-update/python311Packages.autoit-ripper

python311Packages.autoit-ripper: 1.1.1 -> 1.1.2
This commit is contained in:
Nick Cao
2024-02-21 09:51:37 -05:00
committed by GitHub
@@ -3,29 +3,34 @@
, fetchPypi
, pefile
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "autoit-ripper";
version = "1.1.1";
format = "setuptools";
version = "1.1.2";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-a30SDJdKoljWjV0O1sZ35NnQPFcJ0XOPcmTanozWpHY=";
hash = "sha256-+BHWDkeVewoRUgaHln5TyoajpCvJiowCiC2dFYyp1MA=";
};
postPatch = ''
substituteInPlace requirements.txt \
--replace-fail "pefile==2019.4.18" "pefile>=2019.4.18"
'';
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
pefile
];
postPatch = ''
substituteInPlace requirements.txt \
--replace "pefile==2019.4.18" "pefile>=2019.4.18"
'';
# Project has no tests
doCheck = false;
@@ -36,6 +41,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python module to extract AutoIt scripts embedded in PE binaries";
homepage = "https://github.com/nazywam/AutoIt-Ripper";
changelog = "https://github.com/nazywam/AutoIt-Ripper/releases/tag/v${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};