mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
New python package: restview-2.1.1
This commit is contained in:
parent
0b23b5b141
commit
041f507937
1 changed files with 21 additions and 0 deletions
|
@ -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";
|
||||
|
||||
|
|
Loading…
Reference in a new issue