Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchPypi, sphinx }: 2 3buildPythonPackage rec { 4 pname = "piccolo-theme"; 5 version = "0.15.0"; 6 7 src = fetchPypi { 8 pname = "piccolo_theme"; 9 inherit version; 10 hash = "sha256-8VxkrzADp3yCeb02BxtT6oSP1FCX8GW4oc6OECK2hJw="; 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}