about summary refs log tree commit diff
path: root/pkgs/development/python-modules/cjkwrap/default.nix
blob: 811e0f6eeca0cbdb983977e4ed1a9fa8af17a17a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  lib,
  buildPythonPackage,
  fetchPypi,
}:

buildPythonPackage rec {
  pname = "cjkwrap";
  version = "2.2";
  src = fetchPypi {
    pname = "CJKwrap";
    inherit version;
    sha256 = "1b603sg6c2gv9vmlxwr6r1qvhadqk3qp6vifmijris504zjx5ix2";
  };

  pythonImportsCheck = [ "cjkwrap" ];

  meta = with lib; {
    description = "A library for wrapping and filling CJK text";
    homepage = "https://f.gallai.re/cjkwrap";
    license = licenses.lgpl3Plus;
    maintainers = [ maintainers.kaction ];
  };
}