2018-11-06 21:51:32 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonApplication
|
|
|
|
, isPy3k
|
|
|
|
, fetchFromGitHub
|
|
|
|
, manuel
|
|
|
|
, setuptools
|
|
|
|
, docutils
|
|
|
|
, lxml
|
|
|
|
, svg-path
|
|
|
|
, pygments
|
|
|
|
, watchdog
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "hovercraft";
|
2020-03-15 09:32:15 +00:00
|
|
|
version = "2.7";
|
2018-11-06 21:51:32 +00:00
|
|
|
disabled = ! isPy3k;
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "regebro";
|
|
|
|
repo = "hovercraft";
|
|
|
|
rev = version;
|
2020-03-15 09:32:15 +00:00
|
|
|
sha256 = "0k0gjlqjz424rymcfdjpj6a71ppblfls5f8y2hd800d1as4im8az";
|
2018-11-06 21:51:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
checkInputs = [ manuel ];
|
|
|
|
propagatedBuildInputs = [ setuptools docutils lxml svg-path pygments watchdog ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Makes impress.js presentations from reStructuredText";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/regebro/hovercraft";
|
2018-11-06 21:51:32 +00:00
|
|
|
license = licenses.mit;
|
2018-11-10 21:33:03 +00:00
|
|
|
maintainers = with maintainers; [ goibhniu makefu ];
|
2018-11-06 21:51:32 +00:00
|
|
|
};
|
|
|
|
}
|