flake.nix: init
This commit is contained in:
18
default.nix
Normal file
18
default.nix
Normal 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
|
||||
];
|
||||
}
|
Reference in New Issue
Block a user