summary refs log tree commit diff
path: root/pkgs
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
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')
-rw-r--r--pkgs/applications/graphics/kcc/default.nix38
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 40 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 ];
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index bbe2e49bc8f..5d257bb6d85 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -9692,6 +9692,8 @@ in
 
   kati = callPackage ../development/tools/build-managers/kati { };
 
+  kcc = libsForQt5.callPackage ../applications/graphics/kcc { };
+
   kconfig-frontends = callPackage ../development/tools/misc/kconfig-frontends {
     gperf = gperf_3_0;
   };