pythonPackges.tlsh: refacotr move to python-modules
This commit is contained in:
37
pkgs/development/python-modules/tlsh/default.nix
Normal file
37
pkgs/development/python-modules/tlsh/default.nix
Normal file
@@ -0,0 +1,37 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pkgs
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "tlsh";
|
||||
version = "3.4.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "trendmicro";
|
||||
repo = "tlsh";
|
||||
rev = "22fa9a62068b92c63f2b5a87004a7a7ceaac1930";
|
||||
sha256 = "1ydliir308xn4ywy705mmsh7863ldlixdvpqwdhbipzq9vfpmvll";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgs.cmake ];
|
||||
|
||||
# no test data
|
||||
doCheck = false;
|
||||
|
||||
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;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user