about summary refs log tree commit diff
path: root/pkgs/development/python-modules/ppdeep/default.nix
blob: 9685a656480c962dc802ca8d925a3d32348be96f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  lib,
  buildPythonPackage,
  fetchPypi,
}:

buildPythonPackage rec {
  pname = "ppdeep";
  version = "20200505";
  format = "setuptools";

  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 ];
  };
}