Unverified Commit 192593b2 authored by Clément's avatar Clément
Browse files

python3Packages.netbox-qrcode: fix build failure

netbox-qrcode depends on psycopg2, not the latest psycopg
parent 732591f6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@
  # dependencies
  pillow,
  qrcode,
  psycopg,
  psycopg2,

  # nativeCheckInputs
  django,
@@ -40,7 +40,7 @@ buildPythonPackage (finalAttrs: {
    django
    netaddr
    netbox
    psycopg # not specified in pyproject.toml, but required at import time
    psycopg2 # not specified in pyproject.toml, but required at import time
  ];

  preFixup = ''