567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
47 lines
1019 B
Nix
47 lines
1019 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
six,
|
|
cmigemo,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cmigemo";
|
|
version = "0.1.6";
|
|
format = "setuptools";
|
|
|
|
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
|
|
'';
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
enabledTestPaths = [ "test/" ];
|
|
|
|
pythonImportsCheck = [ "cmigemo" ];
|
|
|
|
meta = {
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
homepage = "https://github.com/mooz/python-cmigemo";
|
|
description = "Pure python binding for C/Migemo";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ illustris ];
|
|
};
|
|
}
|