19 lines
324 B
Nix
19 lines
324 B
Nix
{ lib
|
|
, python3Packages
|
|
}:
|
|
python3Packages.buildPythonApplication {
|
|
pname = "libdib";
|
|
version = "unstable";
|
|
src = lib.cleanSource ./.;
|
|
|
|
format = "pyproject";
|
|
|
|
nativeBuildInputs = with python3Packages; [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
propagatedBuildInputs = with python3Packages; [
|
|
sqlalchemy
|
|
];
|
|
}
|