3
0
Fork 0
forked from mirrors/nixpkgs

wikicurses: init at 1.3 (#16916)

This commit is contained in:
Matthias Beyer 2016-07-19 08:47:43 +02:00 committed by Franz Pletz
parent eb92804f91
commit 77fcccf7d7
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ stdenv, fetchurl, pythonPackages }:
pythonPackages.buildPythonApplication rec {
version = "1.3";
name = "wikicurses-${version}";
src = fetchurl {
url = "http://github.com/ids1024/wikicurses/archive/v${version}.tar.gz";
sha256 = "1yxgafk1sczg1xi2p6nhrvr3hchp7ydw98n48lp3qzwnryn1kxv8";
};
propagatedBuildInputs = with pythonPackages; [ urwid beautifulsoup4 lxml ];
meta = {
description = "A simple curses interface for MediaWiki sites such as Wikipedia";
homepage = "https://github.com/ids1024/wikicurses/";
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.unix;
};
}

View file

@ -17251,6 +17251,10 @@ in
webfs = callPackage ../servers/http/webfs { };
wikicurses = callPackage ../applications/misc/wikicurses {
pythonPackages = python3Packages;
};
wineMinimal = callPackage ../misc/emulators/wine {
wineRelease = config.wine.release or "stable";
wineBuild = config.wine.build or "wine32";