2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, python3, fetchFromGitHub, wrapQtAppsHook, buildEnv, aspellDicts
|
2019-03-16 19:14:52 +00:00
|
|
|
# Use `lib.collect lib.isDerivation aspellDicts;` to make all dictionaries
|
|
|
|
# available.
|
|
|
|
, enchantAspellDicts ? with aspellDicts; [ en en-computers en-science ]
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
version = "7.0.4";
|
|
|
|
python = let
|
|
|
|
packageOverrides = self: super: {
|
2019-08-13 21:52:01 +00:00
|
|
|
markdown = super.markdown.overridePythonAttrs(old: {
|
2019-11-17 06:54:36 +00:00
|
|
|
src = super.fetchPypi {
|
2019-03-16 19:14:52 +00:00
|
|
|
version = "3.0.1";
|
|
|
|
pname = "Markdown";
|
|
|
|
sha256 = "d02e0f9b04c500cde6637c11ad7c72671f359b87b9fe924b2383649d8841db7c";
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2019-08-13 21:52:01 +00:00
|
|
|
chardet = super.chardet.overridePythonAttrs(old: {
|
2019-11-17 06:54:36 +00:00
|
|
|
src = super.fetchPypi {
|
2019-03-16 19:14:52 +00:00
|
|
|
version = "2.3.0";
|
|
|
|
pname = "chardet";
|
|
|
|
sha256 = "e53e38b3a4afe6d1132de62b7400a4ac363452dc5dfcf8d88e8e0cce663c68aa";
|
|
|
|
};
|
2019-11-17 06:54:36 +00:00
|
|
|
patches = [];
|
2019-03-16 19:14:52 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
in python3.override { inherit packageOverrides; };
|
|
|
|
pythonEnv = python.withPackages (ps: with ps; [
|
|
|
|
pyqt5 docutils pyenchant Markups markdown pygments chardet
|
|
|
|
]);
|
|
|
|
in python.pkgs.buildPythonApplication {
|
|
|
|
inherit version;
|
|
|
|
pname = "retext";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "retext-project";
|
|
|
|
repo = "retext";
|
2019-09-08 23:38:31 +00:00
|
|
|
rev = version;
|
2019-03-16 19:14:52 +00:00
|
|
|
sha256 = "1zcapywspc9v5zf5cxqkcy019np9n41gmryqixj66zsvd544c6si";
|
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
2019-11-17 07:50:07 +00:00
|
|
|
nativeBuildInputs = [ wrapQtAppsHook ];
|
2019-03-23 07:39:01 +00:00
|
|
|
propagatedBuildInputs = [ pythonEnv ];
|
2019-03-16 19:14:52 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
2020-10-07 22:47:20 +00:00
|
|
|
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
|
|
|
|
makeWrapperArgs+=(
|
|
|
|
"--set" "ASPELL_CONF" "dict-dir ${buildEnv {
|
2019-03-16 19:14:52 +00:00
|
|
|
name = "aspell-all-dicts";
|
|
|
|
paths = map (path: "${path}/lib/aspell") enchantAspellDicts;
|
|
|
|
}}"
|
2020-10-07 22:47:20 +00:00
|
|
|
)
|
2019-03-16 19:14:52 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/retext-project/retext/";
|
2019-03-16 19:14:52 +00:00
|
|
|
description = "Simple but powerful editor for Markdown and reStructuredText";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ klntsky ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|