2020-02-25 16:06:24 +01:00
|
|
|
{ lib
|
2019-12-07 02:15:09 +01:00
|
|
|
, fetchFromGitHub
|
|
|
|
, stdenv
|
|
|
|
, cmake
|
|
|
|
, gperftools
|
2020-02-25 16:06:24 +01:00
|
|
|
|
|
|
|
, withGPerfTools ? true
|
2019-12-07 02:15:09 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "sentencepiece";
|
2020-01-17 11:41:53 +01:00
|
|
|
version = "0.1.85";
|
2019-12-07 02:15:09 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "google";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2020-01-17 11:41:53 +01:00
|
|
|
sha256 = "1ncvyw9ar0z7nd47cysxg5xrjm01y1shdlhp8l2pdpx059p3yx3w";
|
2019-12-07 02:15:09 +01:00
|
|
|
};
|
|
|
|
|
2020-02-25 16:06:24 +01:00
|
|
|
nativeBuildInputs = [ cmake ] ++ lib.optional withGPerfTools gperftools;
|
|
|
|
|
|
|
|
outputs = [ "bin" "dev" "out" ];
|
2019-12-07 02:15:09 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-02-21 15:38:07 +01:00
|
|
|
homepage = "https://github.com/google/sentencepiece";
|
2019-12-07 02:15:09 +01:00
|
|
|
description = "Unsupervised text tokenizer for Neural Network-based text generation";
|
|
|
|
license = licenses.asl20;
|
2020-02-21 15:38:07 +01:00
|
|
|
platforms = platforms.unix;
|
2019-12-07 02:15:09 +01:00
|
|
|
maintainers = with maintainers; [ pashashocky ];
|
|
|
|
};
|
|
|
|
}
|