Unverified Commit 9bc6fd58 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #201914 from fabaff/ssdeep-bump

python310Packages.ssdeep: 3.4 -> 3.4.1
parents f76814b6 6f4ec004
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -5,18 +5,21 @@
, pytestCheckHook
, six
, ssdeep
, pythonOlder
}:

buildPythonPackage rec {
  pname = "ssdeep";
  version = "3.4";
  version = "3.4.1";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "DinoTools";
    repo = "python-ssdeep";
    rev = version;
    hash = "sha256-eAB4/HmPGj/ngHrqkOlY/kTdY5iUEBHxrsRYjR/RNyw=";
    rev = "refs/tags/${version}";
    hash = "sha256-I5ci5BS+B3OE0xdLSahu3HCh99jjhnRHJFz830SvFpg=";
  };

  buildInputs = [
@@ -28,7 +31,6 @@ buildPythonPackage rec {
    six
  ];


  checkInputs = [
    pytestCheckHook
  ];
@@ -45,6 +47,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Python wrapper for the ssdeep library";
    homepage = "https://github.com/DinoTools/python-ssdeep";
    changelog = "https://github.com/DinoTools/python-ssdeep/blob/${version}/CHANGELOG.rst";
    license = licenses.lgpl3Plus;
    maintainers = with maintainers; [ fab ];
  };