summary refs log tree commit diff
path: root/pkgs/applications/misc/calibre
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2020-04-05 14:20:42 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2020-04-15 17:44:08 -0300
commitd811d6a0dcca49d24c12befc70b2e86e848b9106 (patch)
tree575af50745d6b01079e9f785b70ef99fb9b33238 /pkgs/applications/misc/calibre
parent2da253a7ded5942283049b3a83388123adc27ab6 (diff)
downloadnixpkgs-d811d6a0dcca49d24c12befc70b2e86e848b9106.tar
nixpkgs-d811d6a0dcca49d24c12befc70b2e86e848b9106.tar.gz
nixpkgs-d811d6a0dcca49d24c12befc70b2e86e848b9106.tar.bz2
nixpkgs-d811d6a0dcca49d24c12befc70b2e86e848b9106.tar.lz
nixpkgs-d811d6a0dcca49d24c12befc70b2e86e848b9106.tar.xz
nixpkgs-d811d6a0dcca49d24c12befc70b2e86e848b9106.tar.zst
nixpkgs-d811d6a0dcca49d24c12befc70b2e86e848b9106.zip
[WIP] {help wanted} calibre: 4.12.0 -> 4.13.0
Diffstat (limited to 'pkgs/applications/misc/calibre')
-rw-r--r--pkgs/applications/misc/calibre/default.nix12
1 files changed, 5 insertions, 7 deletions
diff --git a/pkgs/applications/misc/calibre/default.nix b/pkgs/applications/misc/calibre/default.nix
index afd602f6088..81fcc64de72 100644
--- a/pkgs/applications/misc/calibre/default.nix
+++ b/pkgs/applications/misc/calibre/default.nix
@@ -16,7 +16,7 @@
 , hyphen
 , unrarSupport ? false
 , chmlib
-, python2Packages
+, python3Packages
 , libusb1
 , libmtp
 , xdg_utils
@@ -25,16 +25,15 @@
 }:
 
 let
-  pypkgs = python2Packages;
-
+  pypkgs = python3Packages;
 in
 mkDerivation rec {
   pname = "calibre";
-  version = "4.12.0";
+  version = "4.13.0";
 
   src = fetchurl {
     url = "https://download.calibre-ebook.com/${version}/${pname}-${version}.tar.xz";
-    sha256 = "144vl5p0adcywcqaarrriq5zd8q5i934yfjg9himiq1vdp9vy4fi";
+    sha256 = "1xp1fvpdizk6g74diam4nd59s6fhcvp086y1brm6r9wy9zm7sn7r";
   };
 
   patches = [
@@ -171,8 +170,7 @@ mkDerivation rec {
     description = "Comprehensive e-book software";
     homepage = "https://calibre-ebook.com";
     license = with licenses; if unrarSupport then unfreeRedistributable else gpl3;
-    maintainers = with maintainers; [ domenkozar pSub AndersonTorres ];
+    maintainers = with maintainers; [ domenkozar pSub ];
     platforms = platforms.linux;
-    inherit version;
   };
 }