1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 setuptools,
6 sphinx,
7}:
8
9buildPythonPackage rec {
10 pname = "guzzle-sphinx-theme";
11 version = "0.7.11";
12 pyproject = true;
13
14 src = fetchPypi {
15 pname = "guzzle_sphinx_theme";
16 inherit version;
17 hash = "sha256-m4wWOcNDwCw/PbffZg3fb1M7VFTukqX3sC7apXP+0+Y=";
18 };
19
20 nativeBuildInputs = [ setuptools ];
21
22 doCheck = false; # no tests
23
24 propagatedBuildInputs = [ sphinx ];
25
26 pythonImportsCheck = [ "guzzle_sphinx_theme" ];
27
28 meta = with lib; {
29 description = "Sphinx theme used by Guzzle: http://guzzlephp.org";
30 homepage = "https://github.com/guzzle/guzzle_sphinx_theme/";
31 license = licenses.mit;
32 maintainers = with maintainers; [ flokli ];
33 };
34}