Commit 6f4ec004 authored by Fabian Affolter's avatar Fabian Affolter
Browse files
parent 32d0e073
Loading
Loading
Loading
Loading
+5 −2
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 = "refs/tags/${version}";
    hash = "sha256-eAB4/HmPGj/ngHrqkOlY/kTdY5iUEBHxrsRYjR/RNyw=";
    hash = "sha256-I5ci5BS+B3OE0xdLSahu3HCh99jjhnRHJFz830SvFpg=";
  };

  buildInputs = [