python.pkgs.sphinxcontrib-websupport: init at 1.0.1
This commit is contained in:
parent
2923300a5f
commit
7726a1ec25
2 changed files with 28 additions and 0 deletions
|
@ -0,0 +1,26 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, six
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "sphinxcontrib-websupport";
|
||||
version = "1.0.1";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "7a85961326aa3a400cd4ad3c816d70ed6f7c740acd7ce5d78cd0a67825072eb9";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ six ];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Sphinx API for Web Apps";
|
||||
homepage = http://sphinx-doc.org/;
|
||||
license = lib.licenses.bsd2;
|
||||
};
|
||||
}
|
|
@ -22121,6 +22121,8 @@ in {
|
|||
doCheck = false;
|
||||
};
|
||||
|
||||
sphinxcontrib-websupport = callPackage ../development/python-modules/sphinxcontrib-websupport { };
|
||||
|
||||
hieroglyph = callPackage ../development/python-modules/hieroglyph { };
|
||||
|
||||
sphinx_rtd_theme = buildPythonPackage (rec {
|
||||
|
|
Loading…
Reference in a new issue