summary refs log tree commit diff
path: root/pkgs/development/python-modules/sentencepiece/default.nix
blob: 430e61399b2f3c73e74d3f354eda19a0162fd9c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ buildPythonPackage
, stdenv
, sentencepiece
, pkgconfig
}:

buildPythonPackage rec {
  pname = "sentencepiece";
  inherit (sentencepiece) version src;

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ sentencepiece.dev ];

  sourceRoot = "source/python";

  # sentencepiece installs 'bin' output.
  meta = builtins.removeAttrs sentencepiece.meta [ "outputsToInstall" ];
}