guzzle_sphinx_theme: init at 0.7.11
* maintainers: add flokli * sphinx_guzzle_theme: init at 0.7.11 This adds sphinx_guzzle_theme, which is used for sphinx documentation in various projects, including BorgBackup.
This commit is contained in:
committed by
Jörg Thalheim
parent
42541c4387
commit
ab2cc75f78
@@ -0,0 +1,25 @@
|
||||
{ stdenv, buildPythonPackage, sphinx, fetchPypi }:
|
||||
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "guzzle_sphinx_theme";
|
||||
version = "0.7.11";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1rnkzrrsbnifn3vsb4pfaia3nlvgvw6ndpxp7lzjrh23qcwid34v";
|
||||
};
|
||||
|
||||
doCheck = false; # no tests
|
||||
|
||||
propagatedBuildInputs = [ sphinx ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Sphinx theme used by Guzzle: http://guzzlephp.org";
|
||||
homepage = https://github.com/guzzle/guzzle_sphinx_theme/;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ flokli ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user