git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
28 lines
633 B
Nix
28 lines
633 B
Nix
{ lib, python3Packages, fetchPypi }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "epy";
|
|
version = "2023.6.11";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "epy_reader";
|
|
hash = "sha256-gel503e8DXjrMJK9lpAZ6GxQsrahKX+SjiyRwKbiJUY=";
|
|
};
|
|
|
|
nativeBuildInputs = [ python3Packages.poetry-core ];
|
|
|
|
pythonImportsCheck = [
|
|
"epy_reader.cli"
|
|
"epy_reader.reader"
|
|
];
|
|
|
|
meta = {
|
|
description = "CLI Ebook Reader";
|
|
homepage = "https://github.com/wustho/epy";
|
|
mainProgram = "epy";
|
|
license = lib.licenses.gpl3;
|
|
maintainers = with lib.maintainers; [ perstark ];
|
|
};
|
|
}
|