2023-08-29 18:32:49 +02:00
|
|
|
{ lib
|
|
|
|
, python3Packages
|
|
|
|
, fetchFromGitHub
|
2022-08-28 05:58:42 +02:00
|
|
|
}:
|
2021-09-07 13:07:25 +02:00
|
|
|
python3Packages.buildPythonApplication {
|
|
|
|
pname = "dibbler";
|
|
|
|
version = "unstable-2021-09-07";
|
|
|
|
src = lib.cleanSource ../.;
|
|
|
|
|
2023-08-29 18:32:49 +02:00
|
|
|
format = "pyproject";
|
|
|
|
|
|
|
|
nativeBuildInputs = with python3Packages; [ setuptools ];
|
2021-09-07 13:07:25 +02:00
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
brother-ql
|
2023-08-29 18:32:49 +02:00
|
|
|
matplotlib
|
2021-09-07 13:07:25 +02:00
|
|
|
psycopg2
|
|
|
|
python-barcode
|
2023-08-29 18:32:49 +02:00
|
|
|
sqlalchemy
|
2021-09-07 13:07:25 +02:00
|
|
|
];
|
|
|
|
}
|