python38Packages.cmigemo: 0.1.6
This commit is contained in:
@@ -3991,6 +3991,12 @@
|
|||||||
githubId = 61913481;
|
githubId = 61913481;
|
||||||
name = "Mat Marini";
|
name = "Mat Marini";
|
||||||
};
|
};
|
||||||
|
illustris = {
|
||||||
|
email = "me@illustris.tech";
|
||||||
|
github = "illustris";
|
||||||
|
githubId = 3948275;
|
||||||
|
name = "Harikrishnan R";
|
||||||
|
};
|
||||||
ilya-fedin = {
|
ilya-fedin = {
|
||||||
email = "fedin-ilja2010@ya.ru";
|
email = "fedin-ilja2010@ya.ru";
|
||||||
github = "ilya-fedin";
|
github = "ilya-fedin";
|
||||||
|
|||||||
@@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -1387,6 +1387,10 @@ in {
|
|||||||
|
|
||||||
cmdtest = callPackage ../development/python-modules/cmdtest { };
|
cmdtest = callPackage ../development/python-modules/cmdtest { };
|
||||||
|
|
||||||
|
cmigemo = callPackage ../development/python-modules/cmigemo {
|
||||||
|
inherit (pkgs) cmigemo;
|
||||||
|
};
|
||||||
|
|
||||||
cmsis-svd = callPackage ../development/python-modules/cmsis-svd { };
|
cmsis-svd = callPackage ../development/python-modules/cmsis-svd { };
|
||||||
|
|
||||||
cntk = callPackage ../development/python-modules/cntk { };
|
cntk = callPackage ../development/python-modules/cntk { };
|
||||||
|
|||||||
Reference in New Issue
Block a user