Skip to content

Instantly share code, notes, and snippets.

@analyticd
Created March 3, 2020 04:32
Show Gist options
  • Save analyticd/ac51e8848b263d9c08f41b96bb99541e to your computer and use it in GitHub Desktop.
Save analyticd/ac51e8848b263d9c08f41b96bb99541e to your computer and use it in GitHub Desktop.
penelope = with pkgs; python3Packages.buildPythonPackage rec {
pname = "penelope";
version = "3.1.3.0";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "0vicjkxhi8ncwgfnicc02xvww7idam0jikry878rsdgi9x30vkbl";
};
buildInputs = [ python3Packages.lxml python3Packages.marisa-trie ];
doCheck = false;
meta = with lib; {
homepage = https://pypi.org/project/penelope;
description = "Penelope is a multi-tool for creating, editing and converting dictionaries, especially for eReader devices.";
# license = licenses.bsd3;
# maintainers = with maintainers; [ fridh ];
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment