buku: 2.4 -> 2.5

This commit is contained in:
Edward Tjörnhammar 2016-10-21 08:00:18 +02:00
parent 58e46e2b8f
commit d6f1c52735
No known key found for this signature in database
GPG Key ID: 7B82CE4A866B6845

View File

@ -1,21 +1,22 @@
{ stdenv, pythonPackages, fetchFromGitHub, { stdenv, pythonPackages, fetchFromGitHub,
}: }:
pythonPackages.buildPythonApplication rec { with pythonPackages; buildPythonApplication rec {
version = "2.4"; version = "2.5";
name = "buku-${version}"; name = "buku-${version}";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "jarun"; owner = "jarun";
repo = "buku"; repo = "buku";
rev = "v${version}"; rev = "v${version}";
sha256 = "0rmvlpp1pzzgn1hf87ksigj9kp60gfwkvxymb4wiz7dqa57b1q0n"; sha256 = "0m6km37zylinsblwm2p8pm760xlsf9m82xyws3762xs8zxbnfmsd";
}; };
buildInputs = [ buildInputs = [
pythonPackages.cryptography cryptography
pythonPackages.beautifulsoup4 beautifulsoup4
]; ];
propagatedBuildInputs = [ beautifulsoup4 ];
phases = [ "unpackPhase" "installPhase" "fixupPhase" ]; phases = [ "unpackPhase" "installPhase" "fixupPhase" ];