Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

retext: init at 7.0.4 #57766

Merged
merged 3 commits into from Mar 23, 2019
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
62 changes: 62 additions & 0 deletions pkgs/applications/editors/retext/default.nix
@@ -0,0 +1,62 @@
{ lib, stdenv, python3, fetchFromGitHub, makeWrapper, buildEnv, aspellDicts
# 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: {
markdown = super.markdown.overridePythonAttrs(old: rec {
src = super.fetchPypi {
version = "3.0.1";
pname = "Markdown";
sha256 = "d02e0f9b04c500cde6637c11ad7c72671f359b87b9fe924b2383649d8841db7c";
};
});

chardet = super.chardet.overridePythonAttrs(old: rec {
src = super.fetchPypi {
version = "2.3.0";
pname = "chardet";
sha256 = "e53e38b3a4afe6d1132de62b7400a4ac363452dc5dfcf8d88e8e0cce663c68aa";
};
});
};
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";
rev = "${version}";
sha256 = "1zcapywspc9v5zf5cxqkcy019np9n41gmryqixj66zsvd544c6si";
};

doCheck = false;

propagatedBuildInputs = [ makeWrapper pythonEnv ];
klntsky marked this conversation as resolved.
Show resolved Hide resolved

postInstall = ''
mv $out/bin/retext $out/bin/.retext
makeWrapper "$out/bin/.retext" "$out/bin/retext" \
--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;
};
}
28 changes: 28 additions & 0 deletions pkgs/development/python-modules/Markups/default.nix
@@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchPypi
, python-markdown-math
, markdown
, docutils
, pygments
}:

buildPythonPackage rec {
pname = "Markups";
version = "3.0.0";

src = fetchPypi {
inherit pname version;
sha256 = "1ea19458dfca6a4562044e701aa8698089a0c659fc535689ed260f89a04f8d39";
};

checkInputs = [ markdown docutils pygments ];
propagatedBuildInputs = [ python-markdown-math ];

meta = {
description = "A wrapper around various text markup languages.";
homepage = https://github.com/retext-project/pymarkups;
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ klntsky ];
};
}
24 changes: 24 additions & 0 deletions pkgs/development/python-modules/python-markdown-math/default.nix
@@ -0,0 +1,24 @@
{ lib
, buildPythonPackage
, fetchPypi
, markdown
}:

buildPythonPackage rec {
pname = "python-markdown-math";
version = "0.6";

src = fetchPypi {
inherit pname version;
sha256 = "c68d8cb9695cb7b435484403dc18941d1bad0ff148e4166d9417046a0d5d3022";
};

checkInputs = [ markdown ];

meta = {
description = "Math extension for Python-Markdown";
homepage = https://github.com/mitya57/python-markdown-math;
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ klntsky ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -5189,6 +5189,8 @@ in

redsocks = callPackage ../tools/networking/redsocks { };

retext = callPackage ../applications/editors/retext { };

richgo = callPackage ../development/tools/richgo { };

rst2html5 = callPackage ../tools/text/rst2html5 { };
Expand Down
4 changes: 4 additions & 0 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -3123,6 +3123,8 @@ in {

marisa-trie = callPackage ../development/python-modules/marisa-trie { };

Markups = callPackage ../development/python-modules/Markups { };

markupsafe = callPackage ../development/python-modules/markupsafe { };

marshmallow = callPackage ../development/python-modules/marshmallow { };
Expand Down Expand Up @@ -3959,6 +3961,8 @@ in {

pysvn = callPackage ../development/python-modules/pysvn { };

python-markdown-math = callPackage ../development/python-modules/python-markdown-math { };

python-ptrace = callPackage ../development/python-modules/python-ptrace { };

python-wifi = callPackage ../development/python-modules/python-wifi { };
Expand Down