flake: update lock

This commit is contained in:
2024-09-13 21:46:43 +02:00
parent ab926c541b
commit 0ad7bc3e39
2 changed files with 41 additions and 10 deletions
+31
View File
@@ -0,0 +1,31 @@
{ lib, python3Packages }:
with python3Packages;
buildPythonApplication rec {
pname = "maloja";
version = "3.2.2";
propagatedBuildInputs = [
bottle
waitress
doreah
nimrodel
setproctitle
jinja2
lru-dict
psutil
sqlalchemy
python-datauri
requests
setuptools
toml
pyyaml
];
src = fetchFromGitHub {
owner = "krateng";
repo = "maloja";
rev = "v${version}";
sha256 = "";
};
}