Initial Packages

This commit is contained in:
2026-05-31 21:15:28 +02:00
commit db55c69d52
14 changed files with 690 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{
python3Packages,
fetchPypi,
}:
python3Packages.buildPythonPackage rec {
pname = "pygments-styles";
version = "0.3.0";
format = "wheel";
src = fetchPypi {
inherit version;
format = "wheel";
dist = "py3";
python = "py3";
pname = "pygments_styles";
hash = "sha256-xsRemTnrdZA0W8kIQRO6xGxF8SsAnRNCK+AugOhKA0w=";
};
propagatedBuildInputs = [
python3Packages.pygments
];
pythonImportsCheck = [ "pygments_styles" ];
}