New python package: restview-2.1.1

This commit is contained in:
koral 2014-10-01 19:04:22 +02:00
parent 0b23b5b141
commit 041f507937

View file

@ -7455,6 +7455,27 @@ let
};
restview = buildPythonPackage rec {
name = "restview-${version}";
version = "2.1.1";
src = fetchurl {
url = "https://pypi.python.org/packages/source/r/restview/${name}.tar.gz";
sha256 = "07scf80hhr9rijrbfrplyi3gwkx74knnzfhvlg6yf1cd0x2yiy8v";
};
propagatedBuildInputs = [ docutils mock pygments ];
meta = with stdenv.lib; {
description = "ReStructuredText viewer";
homepage = http://mg.pov.lt/restview/;
license = licenses.gpl2;
platforms = platforms.all;
maintainers = [ maintainers.koral ];
};
};
reviewboard = buildPythonPackage rec {
name = "ReviewBoard-1.6.16";