Merge pull request #28463 (canto upgrade)

This updates canto-daemon to version 0.9.7 and canto-curses to version
0.9.9. I've tested building both and executing them (although without
very comprehensive tests) and they do work on my machine.

I haven't tested the NixOS service module however, but given that
@devhell is also the maintainer of these packages and the service
module, I trust that he's done testing by himself.
This commit is contained in:
aszlig 2017-08-23 20:11:32 +02:00
commit c38440f4e4
No known key found for this signature in database
GPG key ID: 1DE8E48E57DB5436
2 changed files with 4 additions and 4 deletions

View file

@ -1,14 +1,14 @@
{ stdenv, fetchFromGitHub, python34Packages, readline, ncurses, canto-daemon }: { stdenv, fetchFromGitHub, python34Packages, readline, ncurses, canto-daemon }:
python34Packages.buildPythonApplication rec { python34Packages.buildPythonApplication rec {
version = "0.9.7"; version = "0.9.9";
name = "canto-curses-${version}"; name = "canto-curses-${version}";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "themoken"; owner = "themoken";
repo = "canto-curses"; repo = "canto-curses";
rev = "v${version}"; rev = "v${version}";
sha256 = "0ap1b4m5gbzi0l7vj6pwvvg77i2aarbynbdc147z2b1lzvr985zq"; sha256 = "1vzb9n1j4gxigzll6654ln79lzbrrm6yy0lyazd9kldyl349b8sr";
}; };
buildInputs = [ readline ncurses canto-daemon ]; buildInputs = [ readline ncurses canto-daemon ];

View file

@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, python34Packages, }: { stdenv, fetchFromGitHub, python34Packages, }:
python34Packages.buildPythonApplication rec { python34Packages.buildPythonApplication rec {
version = "0.9.6"; version = "0.9.7";
name = "canto-daemon-${version}"; name = "canto-daemon-${version}";
namePrefix = ""; namePrefix = "";
@ -9,7 +9,7 @@ python34Packages.buildPythonApplication rec {
owner = "themoken"; owner = "themoken";
repo = "canto-next"; repo = "canto-next";
rev = "v${version}"; rev = "v${version}";
sha256 = "0ibakwmsbpk10bvxsr5vvka0pks89arric428y5cmfgcpr72sqzw"; sha256 = "1si53r8cd4avfc56r315zyrghkppnjd6n125z1agfv59i7hdmk3n";
}; };
propagatedBuildInputs = with python34Packages; [ feedparser ]; propagatedBuildInputs = with python34Packages; [ feedparser ];