summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/autoit-ripper
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/autoit-ripper')
-rw-r--r--pkgs/development/python-modules/autoit-ripper/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/autoit-ripper/default.nix b/pkgs/development/python-modules/autoit-ripper/default.nix
new file mode 100644
index 000000000000..2276241d25e9
--- /dev/null
+++ b/pkgs/development/python-modules/autoit-ripper/default.nix
@@ -0,0 +1,36 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, lief
+, pythonOlder
+}:
+
+buildPythonPackage rec {
+ pname = "autoit-ripper";
+ version = "1.0.1";
+ disabled = pythonOlder "3.6";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0mbsrfa72n7y1vkm9jhwhn1z3k45jxrlgx58ia1l2bp6chnnn2zy";
+ };
+
+ propagatedBuildInputs = [
+ lief
+ ];
+
+ postPatch = ''
+ substituteInPlace requirements.txt --replace "lief==0.10.1" "lief>=0.10.1"
+ '';
+
+ # Project has no tests
+ doCheck = false;
+ pythonImportsCheck = [ "autoit_ripper" ];
+
+ meta = with lib; {
+ description = "Python module to extract AutoIt scripts embedded in PE binaries";
+ homepage = "https://github.com/nazywam/AutoIt-Ripper";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ fab ];
+ };
+}