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