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

, sentencepiece
, pkg-config
}:

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

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ sentencepiece.dev ];

  sourceRoot = "${src.name}/python";

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