pythonPackages.tlsh: init at 3.4.1

This C extension is a bit funky since it needs cmake to be run to
generate some header file before it can be built.
This commit is contained in:
Tuomas Tynkkynen 2015-09-27 07:05:27 +03:00
parent c0aada1e1f
commit f5b6ced7ec

View file

@ -21111,6 +21111,29 @@ in modules // {
};
};
tlsh = buildPythonPackage rec {
name = "tlsh-3.4.1";
src = pkgs.fetchFromGitHub {
owner = "trendmicro";
repo = "tlsh";
rev = "b319aed6a270cc765347296b442820c495018833";
sha256 = "08ysniihvidcyvh9zip64wwvj7mvxvsqs60ci8cxj28f1ip0n8wg";
};
buildInputs = with pkgs; [ cmake ];
preConfigure = ''
mkdir build
cd build
cmake ..
cd ../py_ext
'';
meta = with stdenv.lib; {
description = "Trend Micro Locality Sensitive Hash";
homepage = https://github.com/trendmicro/tlsh;
license = licenses.asl20;
platforms = platforms.linux;
};
};
toposort = buildPythonPackage rec {
name = "toposort-${version}";
version = "1.1";