summary refs log tree commit diff
path: root/pkgs/applications/graphics/kcc
diff options
context:
space:
mode:
authordawidsowa <dawid_sowa@posteo.net>2019-08-29 02:23:31 +0200
committerdawidsowa <dawid_sowa@posteo.net>2019-08-29 02:23:31 +0200
commitb047ec51734cd1a0761f82138ef30adb5e4724ae (patch)
tree215f56a2d02cd2eaede5d9f4c79b74fa4bd9c696 /pkgs/applications/graphics/kcc
parent41505960a7fdb7259ed74b89542549f1e93693fc (diff)
downloadnixpkgs-b047ec51734cd1a0761f82138ef30adb5e4724ae.tar
nixpkgs-b047ec51734cd1a0761f82138ef30adb5e4724ae.tar.gz
nixpkgs-b047ec51734cd1a0761f82138ef30adb5e4724ae.tar.bz2
nixpkgs-b047ec51734cd1a0761f82138ef30adb5e4724ae.tar.lz
nixpkgs-b047ec51734cd1a0761f82138ef30adb5e4724ae.tar.xz
nixpkgs-b047ec51734cd1a0761f82138ef30adb5e4724ae.tar.zst
nixpkgs-b047ec51734cd1a0761f82138ef30adb5e4724ae.zip
kcc: init at 5.5.1
Diffstat (limited to 'pkgs/applications/graphics/kcc')
-rw-r--r--pkgs/applications/graphics/kcc/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/kcc/default.nix b/pkgs/applications/graphics/kcc/default.nix
new file mode 100644
index 00000000000..da358918972
--- /dev/null
+++ b/pkgs/applications/graphics/kcc/default.nix
@@ -0,0 +1,38 @@
+{ lib
+, mkDerivationWith
+, python3Packages
+, p7zip
+, archiveSupport ? true
+}:
+
+mkDerivationWith python3Packages.buildPythonApplication rec {
+  pname = "kcc";
+  version = "5.5.1";
+
+  src = python3Packages.fetchPypi {
+    inherit version;
+    pname = "KindleComicConverter";
+    sha256 = "5dbee5dc5ee06a07316ae5ebaf21ffa1970094dbae5985ad735e2807ef112644";
+  };
+  
+  propagatedBuildInputs = with python3Packages ; [
+    pillow
+    pyqt5
+    psutil
+    python-slugify
+    raven
+  ];
+
+  qtWrapperArgs = lib.optional archiveSupport [ "--prefix" "PATH" ":" "${ lib.makeBinPath [ p7zip ] }" ];
+
+  postFixup =  ''
+    wrapProgram $out/bin/kcc "''${qtWrapperArgs[@]}"
+  '';
+
+  meta = with lib; {
+    description = "Python app to convert comic/manga files or folders to EPUB, Panel View MOBI or E-Ink optimized CBZ";
+    homepage = "https://kcc.iosphe.re";
+    license = licenses.isc;
+    maintainers = with maintainers; [ dawidsowa ];
+  };
+}