02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
38 lines
780 B
Nix
38 lines
780 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, isPy3k
|
|
, pythonAtLeast
|
|
, cython
|
|
, numpy
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pkuseg";
|
|
version = "0.0.25";
|
|
format = "setuptools";
|
|
|
|
disabled = !isPy3k || pythonAtLeast "3.9";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "148yp0l7h8cflxag62pc1iwj5b5liyljnaxwfjaiqwl96vwjn0fx";
|
|
};
|
|
|
|
# Does not seem to have actual tests, but unittest discover
|
|
# recognizes some non-tests as tests and fails.
|
|
doCheck = false;
|
|
|
|
nativeBuildInputs = [ cython ];
|
|
|
|
propagatedBuildInputs = [ numpy ];
|
|
|
|
pythonImportsCheck = [ "pkuseg" ];
|
|
|
|
meta = with lib; {
|
|
description = "Toolkit for multi-domain Chinese word segmentation";
|
|
homepage = "https://github.com/lancopku/pkuseg-python";
|
|
license = licenses.unfree;
|
|
};
|
|
}
|