5d30102c6a
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-ssdeep/versions
34 lines
649 B
Nix
34 lines
649 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pkgs
|
|
, cffi
|
|
, six
|
|
, pytest
|
|
, pytestrunner
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ssdeep";
|
|
version = "3.4";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0px8k4fjbkjb717bg2v7rjhm4iclrxzq7sh0hfqs55f4ddqi0m8v";
|
|
};
|
|
|
|
buildInputs = [ pkgs.ssdeep pytestrunner ];
|
|
checkInputs = [ pytest ];
|
|
propagatedBuildInputs = [ cffi six ];
|
|
|
|
# tests repository does not include required files
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/DinoTools/python-ssdeep;
|
|
description = "Python wrapper for the ssdeep library";
|
|
license = licenses.lgpl3;
|
|
};
|
|
|
|
}
|