5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
34 lines
753 B
Nix
34 lines
753 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, lxml
|
|
, six
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ebooklib";
|
|
version = "0.18";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aerkalov";
|
|
repo = "ebooklib";
|
|
rev = "v${version}";
|
|
hash = "sha256-Ciks/eeRpkqkWnyLgyHC+x/dSOcj/ZT45KUElKqv1F8=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
lxml
|
|
six
|
|
];
|
|
|
|
pythonImportsCheck = [ "ebooklib" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python E-book library for handling books in EPUB2/EPUB3 format";
|
|
homepage = "https://github.com/aerkalov/ebooklib";
|
|
changelog = "https://github.com/aerkalov/ebooklib/blob/${src.rev}/CHANGES.txt";
|
|
license = licenses.agpl3Only;
|
|
maintainers = with maintainers; [ Scrumplex ];
|
|
};
|
|
}
|