forked from mirrors/nixpkgs
canto-{curses,daemon}: use python3 instead of python34
This commit is contained in:
parent
b1bdce0793
commit
795f4b31b9
|
@ -1,8 +1,8 @@
|
|||
{ stdenv, fetchFromGitHub, python34Packages, readline, ncurses, canto-daemon }:
|
||||
{ stdenv, fetchFromGitHub, python3Packages, readline, ncurses, canto-daemon }:
|
||||
|
||||
python34Packages.buildPythonApplication rec {
|
||||
python3Packages.buildPythonApplication rec {
|
||||
version = "0.9.9";
|
||||
name = "canto-curses-${version}";
|
||||
pname = "canto-curses";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "themoken";
|
||||
|
|
|
@ -1,9 +1,8 @@
|
|||
{ stdenv, fetchFromGitHub, python34Packages, }:
|
||||
{ stdenv, fetchFromGitHub, python3Packages, }:
|
||||
|
||||
python34Packages.buildPythonApplication rec {
|
||||
python3Packages.buildPythonApplication rec {
|
||||
version = "0.9.7";
|
||||
name = "canto-daemon-${version}";
|
||||
namePrefix = "";
|
||||
pname = "canto-daemon";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "themoken";
|
||||
|
@ -12,7 +11,7 @@ python34Packages.buildPythonApplication rec {
|
|||
sha256 = "1si53r8cd4avfc56r315zyrghkppnjd6n125z1agfv59i7hdmk3n";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python34Packages; [ feedparser ];
|
||||
propagatedBuildInputs = with python3Packages; [ feedparser ];
|
||||
|
||||
meta = {
|
||||
description = "Daemon for the canto Atom/RSS feed reader";
|
||||
|
|
Loading…
Reference in a new issue