pythonPackages.sentencepiece: init at 0.1.84

This commit is contained in:
Pash Shocky
2019-12-07 03:26:02 +00:00
committed by Jon
parent 82116878da
commit 0b68e445e1
2 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{ buildPythonPackage
, stdenv
, sentencepiece
, pkgconfig
}:
buildPythonPackage rec {
pname = "sentencepiece";
inherit (sentencepiece) version src meta;
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ sentencepiece ];
sourceRoot = "source/python";
}