12 buildPythonPackage rec {
15 format = "setuptools";
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
21 repo = "python-ssdeep";
23 hash = "sha256-I5ci5BS+B3OE0xdLSahu3HCh99jjhnRHJFz830SvFpg=";
26 buildInputs = [ ssdeep ];
28 propagatedBuildInputs = [
33 nativeCheckInputs = [ pytestCheckHook ];
36 substituteInPlace setup.py \
37 --replace '"pytest-runner"' ""
40 pythonImportsCheck = [ "ssdeep" ];
43 description = "Python wrapper for the ssdeep library";
44 homepage = "https://github.com/DinoTools/python-ssdeep";
45 changelog = "https://github.com/DinoTools/python-ssdeep/blob/${version}/CHANGELOG.rst";
46 license = licenses.lgpl3Plus;
47 maintainers = with maintainers; [ fab ];