Created
March 3, 2020 04:32
-
-
Save analyticd/ac51e8848b263d9c08f41b96bb99541e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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