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

buildPythonPackage rec {
  pname = "CJKwrap";
  version = "2.2";
  src = fetchPypi {
    inherit pname 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 ];
  };
}