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";
|
2021-01-16 10:40:57 +01:00
|
|
|
version = "0.1.95";
|
2019-12-07 02:15:09 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "google";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-01-16 10:40:57 +01:00
|
|
|
sha256 = "0mv7vgsvd7hjssidxy7fjfmwqy68vjcia8pajji11q2fkfp3cg67";
|
2019-12-07 02:15:09 +01:00
|
|
|
};
|
|
|
|
|
2021-01-08 11:16:34 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
buildInputs = lib.optionals withGPerfTools [ gperftools ];
|
2020-02-25 16:06:24 +01:00
|
|
|
|
|
|
|
outputs = [ "bin" "dev" "out" ];
|
2019-12-07 02:15:09 +01:00
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
meta = with 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;
|
2020-03-09 12:55:48 +01:00
|
|
|
maintainers = with maintainers; [ danieldk pashashocky ];
|
2019-12-07 02:15:09 +01:00
|
|
|
};
|
|
|
|
}
|