Files
dibbler/nix/dibbler.nix
h7x4 d39f1f8a92
Some checks failed
Run tests / run-tests (push) Failing after 24s
pyproject.toml: psycopg2 -> psycopg2-binary
2025-12-08 20:07:37 +09:00

33 lines
632 B
Nix

{ lib
, python3Packages
, fetchFromGitHub
}:
python3Packages.buildPythonApplication {
pname = "dibbler";
version = "unstable";
src = lib.cleanSource ../.;
format = "pyproject";
# brother-ql is breaky breaky
# https://github.com/NixOS/nixpkgs/issues/285234
dontCheckRuntimeDeps = true;
pythonImportsCheck = [];
doCheck = true;
nativeCheckInputs = with python3Packages; [
pytest
pytestCheckHook
];
nativeBuildInputs = with python3Packages; [ setuptools ];
propagatedBuildInputs = with python3Packages; [
brother-ql
matplotlib
psycopg2-binary
python-barcode
sqlalchemy
];
}