16 lines
266 B
Nix
16 lines
266 B
Nix
{ buildPythonPackage
|
|
, stdenv
|
|
, sentencepiece
|
|
, pkgconfig
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sentencepiece";
|
|
inherit (sentencepiece) version src meta;
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ sentencepiece ];
|
|
|
|
sourceRoot = "source/python";
|
|
}
|