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,
}:
pythonPackages.buildPythonApplication rec {
version = "2.4";
with pythonPackages; buildPythonApplication rec {
version = "2.5";
name = "buku-${version}";
src = fetchFromGitHub {
owner = "jarun";
repo = "buku";
rev = "v${version}";
sha256 = "0rmvlpp1pzzgn1hf87ksigj9kp60gfwkvxymb4wiz7dqa57b1q0n";
sha256 = "0m6km37zylinsblwm2p8pm760xlsf9m82xyws3762xs8zxbnfmsd";
};
buildInputs = [
pythonPackages.cryptography
pythonPackages.beautifulsoup4
cryptography
beautifulsoup4
];
propagatedBuildInputs = [ beautifulsoup4 ];
phases = [ "unpackPhase" "installPhase" "fixupPhase" ];