mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-08 06:28:50 +03:00
python3Packages.comicon: init at 1.0.0
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
parent
cea0b7b837
commit
5efab0a0bf
42
pkgs/development/python-modules/comicon/default.nix
Normal file
42
pkgs/development/python-modules/comicon/default.nix
Normal file
@ -0,0 +1,42 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, poetry-core
|
||||
, ebooklib
|
||||
, lxml
|
||||
, pillow
|
||||
, pypdf
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "comicon";
|
||||
version = "1.0.0";
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "potatoeggy";
|
||||
repo = "comicon";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-D6nK+GlcG/XqMTH7h7mJcbZCRG2xDHRsnooSTtphDNs=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
poetry-core
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
ebooklib
|
||||
lxml
|
||||
pillow
|
||||
pypdf
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "comicon" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Lightweight comic converter library between CBZ, PDF, and EPUB";
|
||||
homepage = "https://github.com/potatoeggy/comicon";
|
||||
license = licenses.agpl3Only;
|
||||
maintainers = with maintainers; [ Scrumplex ];
|
||||
};
|
||||
}
|
@ -1825,6 +1825,8 @@ self: super: with self; {
|
||||
inherit (pkgs) secp256k1;
|
||||
};
|
||||
|
||||
comicon = callPackage ../development/python-modules/comicon { };
|
||||
|
||||
connect-box = callPackage ../development/python-modules/connect_box { };
|
||||
|
||||
connection-pool = callPackage ../development/python-modules/connection-pool { };
|
||||
|
Loading…
Reference in New Issue
Block a user