buku: 2.8 -> 2.9

This commit is contained in:
Silvan Mosberger 2017-04-08 00:16:48 +02:00 committed by Jörg Thalheim
parent a5ee494046
commit c2a0f2584a
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA
2 changed files with 7 additions and 5 deletions

View File

@ -217,6 +217,7 @@
ianwookim = "Ian-Woo Kim <ianwookim@gmail.com>";
igsha = "Igor Sharonov <igor.sharonov@gmail.com>";
ikervagyok = "Balázs Lengyel <ikervagyok@gmail.com>";
infinisil = "Silvan Mosberger <infinisil@icloud.com";
ivan-tkatchev = "Ivan Tkatchev <tkatchev@gmail.com>";
j-keck = "Jürgen Keck <jhyphenkeck@gmail.com>";
jagajaga = "Arseniy Seroka <ars.seroka@gmail.com>";

View File

@ -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 ];
};
}