Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / spacy-pkuseg / default.nix
blobb904569010f7e48ee5af930637845985730c1972
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , isPy3k
5 , cython
6 , numpy
7 , srsly
8 }:
10 buildPythonPackage rec {
11   pname = "spacy-pkuseg";
12   version = "0.0.33";
14   disabled = !isPy3k;
16   src = fetchPypi {
17     inherit version;
18     pname = "spacy_pkuseg";
19     hash = "sha256-8TFWrE4ERg8aw17f0DbplwTbutGa0KObBsNA+AKinmI=";
20   };
22   # Does not seem to have actual tests, but unittest discover
23   # recognizes some non-tests as tests and fails.
24   doCheck = false;
26   nativeBuildInputs = [ cython ];
28   propagatedBuildInputs = [ numpy srsly ];
30   pythonImportsCheck = [ "spacy_pkuseg" ];
32   meta = with lib; {
33     description = "Toolkit for multi-domain Chinese word segmentation (spaCy fork)";
34     homepage = "https://github.com/explosion/spacy-pkuseg";
35     license = licenses.mit;
36     maintainers = with maintainers; [ ];
37   };