2017-08-25 18:34:14 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2020-08-16 23:32:38 +01:00
|
|
|
, sphinxcontrib-serializinghtml
|
2017-08-25 18:34:14 +01:00
|
|
|
, six
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "sphinxcontrib-websupport";
|
2020-08-16 18:31:16 +01:00
|
|
|
version = "1.2.4";
|
2017-08-25 18:34:14 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-08-16 18:31:16 +01:00
|
|
|
sha256 = "4edf0223a0685a7c485ae5a156b6f529ba1ee481a1417817935b20bde1956232";
|
2017-08-25 18:34:14 +01:00
|
|
|
};
|
|
|
|
|
2020-08-16 23:32:38 +01:00
|
|
|
propagatedBuildInputs = [ six sphinxcontrib-serializinghtml ];
|
2017-08-25 18:34:14 +01:00
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Sphinx API for Web Apps";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://sphinx-doc.org/";
|
2017-08-25 18:34:14 +01:00
|
|
|
license = lib.licenses.bsd2;
|
|
|
|
};
|
2020-04-01 02:11:51 +01:00
|
|
|
}
|