flake.nix: init

This commit is contained in:
2025-06-07 14:34:35 +02:00
parent 2ecd95f9b0
commit 1c7c75173d
6 changed files with 144 additions and 2 deletions

18
default.nix Normal file
View File

@@ -0,0 +1,18 @@
{ lib
, python3Packages
}:
python3Packages.buildPythonApplication {
pname = "libdib";
version = "unstable";
src = lib.cleanSource ./.;
format = "pyproject";
nativeBuildInputs = with python3Packages; [
setuptools
setuptools-scm
];
propagatedBuildInputs = with python3Packages; [
sqlalchemy
];
}