python38Packages.cmigemo: 0.1.6

This commit is contained in:
illustris 2021-03-21 00:00:45 +05:30
parent ddb1c81c07
commit cd29936577
3 changed files with 46 additions and 0 deletions

View file

@ -3991,6 +3991,12 @@
githubId = 61913481;
name = "Mat Marini";
};
illustris = {
email = "me@illustris.tech";
github = "illustris";
githubId = 3948275;
name = "Harikrishnan R";
};
ilya-fedin = {
email = "fedin-ilja2010@ya.ru";
github = "ilya-fedin";

View file

@ -0,0 +1,36 @@
{ lib, buildPythonPackage, fetchPypi, six, cmigemo, pytestCheckHook }:
buildPythonPackage rec {
pname = "cmigemo";
version = "0.1.6";
src = fetchPypi {
inherit pname version;
sha256 = "09j68kvcskav2cqb7pj12caksmj4wh2lhjp0csq00xpn0wqal4vk";
};
propagatedBuildInputs = [ six ];
preConfigure = ''
export LDFLAGS="-L${cmigemo}/lib"
export CPPFLAGS="-I${cmigemo}/include"
export LD_LIBRARY_PATH="${cmigemo}/lib"
'';
postPatch = ''
sed -i 's~dict_path_base = "/usr/share/cmigemo"~dict_path_base = "/${cmigemo}/share/migemo"~g' test/test_cmigemo.py
'';
checkInputs = [ pytestCheckHook ];
pytestFlagsArray = [ "test/" ];
pythonImportsCheck = [ "cmigemo" ];
meta = with lib; {
homepage = "https://github.com/mooz/python-cmigemo";
description = "A pure python binding for C/Migemo";
license = licenses.mit;
maintainers = with maintainers; [ illustris ];
};
}

View file

@ -1387,6 +1387,10 @@ in {
cmdtest = callPackage ../development/python-modules/cmdtest { };
cmigemo = callPackage ../development/python-modules/cmigemo {
inherit (pkgs) cmigemo;
};
cmsis-svd = callPackage ../development/python-modules/cmsis-svd { };
cntk = callPackage ../development/python-modules/cntk { };