pythonPackges.tlsh: refacotr move to python-modules

This commit is contained in:
Chris Ostrouchov 2018-10-29 12:28:47 -04:00
parent 46d331ba8d
commit f84db6dcee
No known key found for this signature in database
GPG Key ID: 9ED59B0AB1EAF573
2 changed files with 38 additions and 24 deletions

View 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;
};
}

View File

@ -4349,30 +4349,7 @@ in {
pythonefl = callPackage ../development/python-modules/python-efl { };
tlsh = buildPythonPackage rec {
name = "tlsh-3.4.5";
src = pkgs.fetchFromGitHub {
owner = "trendmicro";
repo = "tlsh";
rev = "22fa9a62068b92c63f2b5a87004a7a7ceaac1930";
sha256 = "1ydliir308xn4ywy705mmsh7863ldlixdvpqwdhbipzq9vfpmvll";
};
buildInputs = with 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;
};
};
tlsh = callPackage ../development/python-modules/tlsh { };
toposort = buildPythonPackage rec {
name = "toposort-${version}";