fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
20 lines
409 B
Nix
20 lines
409 B
Nix
{
|
|
buildPythonPackage,
|
|
|
|
sentencepiece,
|
|
pkg-config,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sentencepiece";
|
|
format = "setuptools";
|
|
inherit (sentencepiece) version src;
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ sentencepiece.dev ];
|
|
|
|
sourceRoot = "${src.name}/python";
|
|
|
|
# sentencepiece installs 'bin' output.
|
|
meta = builtins.removeAttrs sentencepiece.meta [ "outputsToInstall" ];
|
|
}
|