Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 buildPythonPackage, 3 fetchPypi, 4 lib, 5 poetry-core, 6 sphinx, 7 beautifulsoup4, 8}: 9 10buildPythonPackage rec { 11 pname = "sphinxawesome-theme"; 12 version = "5.2.0"; 13 pyproject = true; 14 15 src = fetchPypi { 16 inherit version; 17 pname = "sphinxawesome_theme"; 18 hash = "sha256-wk8eXAueR1OA0W/F8fO/2ElVgX2gkF2V9+IICdfNPF0="; 19 }; 20 21 build-system = [ poetry-core ]; 22 dependencies = [ 23 sphinx 24 beautifulsoup4 25 ]; 26 27 pythonRelaxDeps = [ "sphinx" ]; 28 29 meta = { 30 description = "Awesome Sphinx Theme"; 31 homepage = "https://sphinxawesome.xyz/"; 32 license = lib.licenses.mit; 33 maintainers = with lib.maintainers; [sigmanificient]; 34 }; 35}