about summary refs log tree commit diff
path: root/pkgs/tools/text/invoice2data
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/text/invoice2data')
-rw-r--r--pkgs/tools/text/invoice2data/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/text/invoice2data/default.nix b/pkgs/tools/text/invoice2data/default.nix
index 78ab971f0c0d..2ed3005ee776 100644
--- a/pkgs/tools/text/invoice2data/default.nix
+++ b/pkgs/tools/text/invoice2data/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, python3Packages, xpdf, imagemagick, tesseract }:
+{ lib, stdenv, python3Packages, xpdf, imagemagick, tesseract }:
 
 python3Packages.buildPythonPackage rec {
   pname = "invoice2data";
@@ -16,7 +16,7 @@ python3Packages.buildPythonPackage rec {
   # Tests fails even when ran manually on my ubuntu machine !!
   doCheck = false;
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "Data extractor for PDF invoices";
     homepage = "https://github.com/invoice-x/invoice2data";
     license = licenses.mit;