about summary refs log tree commit diff
path: root/pkgs/development/python-modules/ppdeep
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-04-21 10:30:39 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2021-04-21 10:30:39 +0200
commit7e1aee2aa447639c3806264743512203f6613c36 (patch)
tree36e689e998910fa6e934507c91f07ed8598340da /pkgs/development/python-modules/ppdeep
parent0425d81848bbe12415f001a1d9915532e99fc899 (diff)
python3Packages.ppdeep: init at 20200505
Diffstat (limited to 'pkgs/development/python-modules/ppdeep')
-rw-r--r--pkgs/development/python-modules/ppdeep/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/ppdeep/default.nix b/pkgs/development/python-modules/ppdeep/default.nix
new file mode 100644
index 0000000000000..bbb5c3fc923c9
--- /dev/null
+++ b/pkgs/development/python-modules/ppdeep/default.nix
@@ -0,0 +1,25 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+  pname = "ppdeep";
+  version = "20200505";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1zx1h0ff0wjjkgd0dzjv31i6ag09jw2p9vcssc1iplp60awlpixc";
+  };
+
+  # Project has no tests
+  doCheck = false;
+  pythonImportsCheck = [ "ppdeep" ];
+
+  meta = with lib; {
+    description = "Python library for computing fuzzy hashes (ssdeep)";
+    homepage = "https://github.com/elceef/ppdeep";
+    license = with licenses; [ asl20 ];
+    maintainers = with maintainers; [ fab ];
+  };
+}