Merge pull request #150418 from fabaff/update-ssdeep

python3Packages.ssdeep: enable tests
This commit is contained in:
Thiago Kenji Okada 2021-12-12 11:54:20 -03:00 committed by GitHub
commit e384fc4347
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 36 additions and 16 deletions

View File

@ -1,33 +1,51 @@
{ lib
, buildPythonPackage
, fetchPypi
, pkgs
, cffi
, fetchFromGitHub
, pytestCheckHook
, six
, pytest
, pytest-runner
, ssdeep
}:
buildPythonPackage rec {
pname = "ssdeep";
version = "3.4";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "0px8k4fjbkjb717bg2v7rjhm4iclrxzq7sh0hfqs55f4ddqi0m8v";
src = fetchFromGitHub {
owner = "DinoTools";
repo = "python-ssdeep";
rev = version;
hash = "sha256-eAB4/HmPGj/ngHrqkOlY/kTdY5iUEBHxrsRYjR/RNyw=";
};
buildInputs = [ pkgs.ssdeep pytest-runner ];
checkInputs = [ pytest ];
propagatedBuildInputs = [ cffi six ];
buildInputs = [
ssdeep
];
# tests repository does not include required files
doCheck = false;
propagatedBuildInputs = [
cffi
six
];
checkInputs = [
pytestCheckHook
];
postPatch = ''
substituteInPlace setup.py \
--replace '"pytest-runner"' ""
'';
pythonImportsCheck = [
"ssdeep"
];
meta = with lib; {
homepage = "https://github.com/DinoTools/python-ssdeep";
description = "Python wrapper for the ssdeep library";
license = licenses.lgpl3;
homepage = "https://github.com/DinoTools/python-ssdeep";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -9099,7 +9099,9 @@ in {
srvlookup = callPackage ../development/python-modules/srvlookup { };
ssdeep = callPackage ../development/python-modules/ssdeep { };
ssdeep = callPackage ../development/python-modules/ssdeep {
inherit (pkgs) ssdeep;
};
ssdp = callPackage ../development/python-modules/ssdp { };