1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 sphinx, 6}: 7 8buildPythonPackage rec { 9 pname = "piccolo-theme"; 10 version = "0.22.0"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 pname = "piccolo_theme"; 15 inherit version; 16 hash = "sha256-TAbaUnPfAH17BYJqbkSYgNzwmpJkIXGCx1UkJmDML4g="; 17 }; 18 19 propagatedBuildInputs = [ sphinx ]; 20 21 pythonImportsCheck = [ "piccolo_theme" ]; 22 23 meta = with lib; { 24 description = "Clean and modern Sphinx theme"; 25 homepage = "https://piccolo-theme.readthedocs.io"; 26 license = with licenses; [ 27 mit 28 asl20 29 ]; 30 maintainers = with maintainers; [ loicreynier ]; 31 platforms = platforms.unix; 32 }; 33}