dibbler/nix/dibbler.nix

21 lines
392 B
Nix
Raw Normal View History

2023-08-29 18:32:49 +02:00
{ lib
, python3Packages
, fetchFromGitHub
}:
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
];
}