1{ lib, buildPythonPackage, fetchPypi, sphinx }: 2 3buildPythonPackage rec { 4 pname = "piccolo-theme"; 5 version = "0.12.0"; 6 7 src = fetchPypi { 8 pname = "piccolo_theme"; 9 inherit version; 10 sha256 = "sha256-o6uaqAo/Nb28doByq40XakKJpA4o6/Z/PzMhmb058FE="; 11 }; 12 13 propagatedBuildInputs = [ 14 sphinx 15 ]; 16 17 pythonImportsCheck = [ "piccolo_theme" ]; 18 19 meta = with lib; { 20 description = "Clean and modern Sphinx theme"; 21 homepage = "https://piccolo-theme.readthedocs.io"; 22 license = licenses.mit; 23 maintainers = with maintainers; [ loicreynier ]; 24 platforms = platforms.unix; 25 }; 26}