Initial Packages

This commit was merged in pull request #1.
This commit is contained in:
2026-05-31 21:15:28 +02:00
parent e06dc2c7f9
commit 678ba70af9
14 changed files with 690 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
{
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" ];
}