504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
19 lines
404 B
Nix
19 lines
404 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" ];
|
|
}
|