2020-11-30 21:36:21 +01:00
|
|
|
{ lib, python3Packages }:
|
2017-05-01 23:12:36 +02:00
|
|
|
|
2020-11-30 21:36:21 +01:00
|
|
|
let
|
2017-05-01 23:12:36 +02:00
|
|
|
pname = "rst2html5";
|
2020-11-30 21:36:21 +01:00
|
|
|
version = "1.10.6";
|
|
|
|
format = "wheel";
|
2021-02-27 08:15:47 +01:00
|
|
|
in python3Packages.buildPythonPackage {
|
|
|
|
inherit pname version format;
|
2017-05-01 23:12:36 +02:00
|
|
|
|
2020-11-30 21:36:21 +01:00
|
|
|
src = python3Packages.fetchPypi {
|
2021-02-27 08:15:47 +01:00
|
|
|
inherit pname version format;
|
2020-11-30 21:36:21 +01:00
|
|
|
sha256 = "sha256-jmToDFLQODqgTycBp2J8LyoJ1Zxho9w1VdhFMzvDFkg=";
|
2017-05-01 23:12:36 +02:00
|
|
|
};
|
|
|
|
|
2020-11-30 21:36:21 +01:00
|
|
|
propagatedBuildInputs = with python3Packages;
|
2017-05-01 23:12:36 +02:00
|
|
|
[ docutils genshi pygments beautifulsoup4 ];
|
|
|
|
|
2020-11-30 21:36:21 +01:00
|
|
|
meta = with lib;{
|
|
|
|
homepage = "https://pypi.org/project/rst2html5/";
|
2017-05-01 23:12:36 +02:00
|
|
|
description = "Converts ReSTructuredText to (X)HTML5";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
|
|
|
};
|
|
|
|
}
|