Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 732 B view raw
1{ lib 2, fetchFromGitHub 3, buildPythonPackage 4, hatchling 5}: 6 7buildPythonPackage rec { 8 pname = "mkdocs-material-extensions"; 9 version = "1.1.1"; 10 format = "pyproject"; 11 12 src = fetchFromGitHub { 13 owner = "facelessuser"; 14 repo = pname; 15 rev = "refs/tags/${version}"; 16 hash = "sha256-FHI6WEQRd/Ff6pmU13f8f0zPSeFhhbmDdk4/0rdIl4I="; 17 }; 18 19 nativeBuildInputs = [ 20 hatchling 21 ]; 22 23 doCheck = false; # Circular dependency 24 25 pythonImportsCheck = [ "materialx" ]; 26 27 meta = with lib; { 28 description = "Markdown extension resources for MkDocs Material"; 29 homepage = "https://github.com/facelessuser/mkdocs-material-extensions"; 30 license = licenses.mit; 31 maintainers = with maintainers; [ dandellion ]; 32 }; 33}