28 lines
494 B
Nix
28 lines
494 B
Nix
{
|
|
python3Packages,
|
|
fetchPypi,
|
|
pygments-styles,
|
|
}:
|
|
python3Packages.buildPythonPackage rec {
|
|
pname = "sphinx-shibuya-theme";
|
|
version = "2026.1.9";
|
|
|
|
format = "wheel";
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
format = "wheel";
|
|
dist = "py3";
|
|
python = "py3";
|
|
pname = "shibuya";
|
|
hash = "sha256-tYo8xuVhnHHQD88L5KMGDIcEDCpiobPxqTpqQcqOr0U=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
python3Packages.sphinx
|
|
pygments-styles
|
|
];
|
|
|
|
pythonImportsCheck = [ "shibuya" ];
|
|
}
|