Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, fetchPypi, buildPythonPackage, sphinx }: 2 3buildPythonPackage rec { 4 version = "0.3.0"; 5 pname = "sphinx-navtree"; 6 src = fetchPypi { 7 inherit pname version; 8 sha256 = "1nqcsbqwr8ihk1fv534i0naag1qw04f7ibcgl2j8csvkh8q90b4p"; 9 }; 10 11 propagatedBuildInputs = [ sphinx ]; 12 13 meta = { 14 description = "Navigation tree customization for Sphinx"; 15 homepage = "https://github.com/bintoro/sphinx-navtree"; 16 license = lib.licenses.mit; 17 # not compatible with sphinx 3.3, not updated since 2016 18 broken = true; 19 }; 20}