nixpkgs/pkgs/development/python-modules/sentencepiece/default.nix
2019-12-17 16:46:52 -08:00

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";
}