about summary refs log tree commit diff
path: root/pkgs/development/python-modules/filebytes
diff options
context:
space:
mode:
authorChris Ostrouchov <chris.ostrouchov@gmail.com>2018-10-16 14:56:20 -0400
committerFrederik Rietdijk <fridh@fridh.nl>2018-10-17 07:46:59 +0200
commit40cfaacf0d3186efef99201c0c059575fdd43e81 (patch)
tree561f5ce060a58d7d012493608d69cf24f923d7e3 /pkgs/development/python-modules/filebytes
parent6f4332daa4dc6111317fa9af4b3f2c9ac45785a3 (diff)
pythonPackages.filebytes: refactor move to python-modules
Diffstat (limited to 'pkgs/development/python-modules/filebytes')
-rw-r--r--pkgs/development/python-modules/filebytes/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/filebytes/default.nix b/pkgs/development/python-modules/filebytes/default.nix
new file mode 100644
index 0000000000000..3dbcbe5944259
--- /dev/null
+++ b/pkgs/development/python-modules/filebytes/default.nix
@@ -0,0 +1,22 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+  pname = "filebytes";
+  version = "0.9.12";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "6cd1c4ca823f6541c963a317e55382609789802dedad08209f4d038369e3f0ac";
+  };
+
+  meta = with stdenv.lib; {
+    homepage = "https://scoding.de/filebytes-introduction";
+    license = licenses.gpl2;
+    description = "Scripts to parse ELF, PE, Mach-O and OAT (Android Runtime)";
+    maintainers = with maintainers; [ bennofs ];
+  };
+
+}