This commit is contained in:
Zacharias-Brohn
2026-02-21 21:27:41 +01:00
parent ab02c679ca
commit f33f3f19a8
2 changed files with 78 additions and 43 deletions
+25
View File
@@ -0,0 +1,25 @@
{
python3,
}:
python3.pkgs.buildPythonApplication {
pname = "zshell-cli";
version = "0.1.0";
src = ./cli/.;
pyproject = true;
build-system = with python3.pkgs; [
hatch-vcs
hatchling
];
dependencies = with python3.pkgs; [
materialyoucolor
pillow
];
pythonImportsCheck = [ "zshell" ];
nativeBuildInputs = [ installShellFiles ];
SETUPTOOLS_SCM_PRETEND_VERSION = 1;
}