summary refs log tree commit diff
path: root/pkgs/applications/misc/buku
diff options
context:
space:
mode:
authorSilvan Mosberger <infinisil@icloud.com>2017-04-08 00:16:48 +0200
committerJörg Thalheim <joerg@thalheim.io>2017-04-08 08:56:35 +0200
commitc2a0f2584acbebb792f9d9ce7632b0630450ea80 (patch)
tree91719b7fb1b1c934bf0e4951d344ec24062ff6d8 /pkgs/applications/misc/buku
parenta5ee494046b4259a4a2dfea95776faa898d1bd26 (diff)
downloadnixpkgs-c2a0f2584acbebb792f9d9ce7632b0630450ea80.tar
nixpkgs-c2a0f2584acbebb792f9d9ce7632b0630450ea80.tar.gz
nixpkgs-c2a0f2584acbebb792f9d9ce7632b0630450ea80.tar.bz2
nixpkgs-c2a0f2584acbebb792f9d9ce7632b0630450ea80.tar.lz
nixpkgs-c2a0f2584acbebb792f9d9ce7632b0630450ea80.tar.xz
nixpkgs-c2a0f2584acbebb792f9d9ce7632b0630450ea80.tar.zst
nixpkgs-c2a0f2584acbebb792f9d9ce7632b0630450ea80.zip
buku: 2.8 -> 2.9
Diffstat (limited to 'pkgs/applications/misc/buku')
-rw-r--r--pkgs/applications/misc/buku/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/applications/misc/buku/default.nix b/pkgs/applications/misc/buku/default.nix
index 85d8180983e..1ee68b55aa7 100644
--- a/pkgs/applications/misc/buku/default.nix
+++ b/pkgs/applications/misc/buku/default.nix
@@ -2,21 +2,22 @@
 }:
 
 with pythonPackages; buildPythonApplication rec {
-  version = "2.8";
+  version = "2.9";
   name = "buku-${version}";
 
   src = fetchFromGitHub {
     owner = "jarun";
     repo = "buku";
     rev = "v${version}";
-    sha256 = "1gazvij0072lca0jh84i8mhnaxiwg56hcxmrmk2clxd2x213zyjm";
+    sha256 = "0ylq0j5w8jvzys4bj9m08bfr1sgf8h2b4fiax6hs6lcwn2882jbr";
   };
 
-  buildInputs = [
+  propagatedBuildInputs = [
     cryptography
     beautifulsoup4
+    requests2
+    urllib3
   ];
-  propagatedBuildInputs = [ beautifulsoup4 ];
 
   phases = [ "unpackPhase" "installPhase" "fixupPhase" ];
 
@@ -31,7 +32,7 @@ with pythonPackages; buildPythonApplication rec {
     homepage = https://github.com/jarun/Buku;
     license = licenses.gpl3;
     platforms = platforms.linux;
-    maintainers = with maintainers; [ matthiasbeyer ];
+    maintainers = with maintainers; [ matthiasbeyer infinisil ];
   };
 }