Small update

This commit is contained in:
2026-03-28 15:26:16 -04:00
parent d86a8b884e
commit 06a8e77924
14 changed files with 664 additions and 43 deletions

View File

@@ -0,0 +1,28 @@
self: super: with super.python3Packages; {
monique = buildPythonApplication rec {
pname = "monique";
version = "0.5.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-fA2mVMjAg1vOpHPJr2B0NtJ00cEs23/Y4S4h3WurpY4=";
};
pyproject = true;
build-system = [ setuptools ];
nativeBuildInputs = [
super.wrapGAppsHook4
super.gobject-introspection
];
buildInputs = [
super.libadwaita
super.gtk4
];
propagatedBuildInputs = [
pygobject3
];
};
}