1{ lib, buildPythonPackage, fetchPypi, sphinx }: 2 3buildPythonPackage rec { 4 pname = "piccolo-theme"; 5 version = "0.18.0"; 6 7 src = fetchPypi { 8 pname = "piccolo_theme"; 9 inherit version; 10 hash = "sha256-tEgYrQaVcWZadmhV6JRuXnk8m9oJLNSfb0hA309bX1U="; 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 = with licenses; [ mit asl20 ]; 23 maintainers = with maintainers; [ loicreynier ]; 24 platforms = platforms.unix; 25 }; 26}