python3.pkgs.cjkwrap: init at 2.2
This commit is contained in:
parent
b233405aac
commit
2b4ef94228
2 changed files with 23 additions and 0 deletions
19
pkgs/development/python-modules/cjkwrap/default.nix
Normal file
19
pkgs/development/python-modules/cjkwrap/default.nix
Normal file
|
@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
|
@ -1303,6 +1303,10 @@ in {
|
|||
|
||||
citeproc-py = callPackage ../development/python-modules/citeproc-py { };
|
||||
|
||||
cjkwrap = callPackage ../development/python-modules/cjkwrap { };
|
||||
|
||||
cjson = callPackage ../development/python-modules/cjson { };
|
||||
|
||||
ckcc-protocol = callPackage ../development/python-modules/ckcc-protocol { };
|
||||
|
||||
class-registry = callPackage ../development/python-modules/class-registry { };
|
||||
|
|
Loading…
Reference in a new issue