nixpkgs/pkgs/applications/editors/retext/default.nix

64 lines
1.8 KiB
Nix
Raw Normal View History

2019-11-17 07:50:07 +00:00
{ 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 ];
propagatedBuildInputs = [ pythonEnv ];
2019-03-16 19:14:52 +00:00
postInstall = ''
2019-11-17 07:50:07 +00:00
wrapQtApp "$out/bin/retext" \
2019-03-16 19:14:52 +00:00
--set ASPELL_CONF "dict-dir ${buildEnv {
name = "aspell-all-dicts";
paths = map (path: "${path}/lib/aspell") enchantAspellDicts;
}}"
'';
meta = with stdenv.lib; {
homepage = https://github.com/retext-project/retext/;
description = "Simple but powerful editor for Markdown and reStructuredText";
license = licenses.gpl3;
maintainers = with maintainers; [ klntsky ];
platforms = platforms.unix;
};
}