summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-barcode
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2022-05-23 00:02:36 +0000
committerGitHub <noreply@github.com>2022-05-23 00:02:36 +0000
commitba5122823c6f9304612d1aea967fb00c83bf869f (patch)
treef113b677394edf6d0a606c46146102ee3cf10d06 /pkgs/development/python-modules/python-barcode
parent107b6041bc98bd60040bf9305df2e9cdfd71c255 (diff)
parentbc38fcac7d0fd9aba0af3b8ae897ca7ff6b09383 (diff)
Merge master into staging-next
Diffstat (limited to 'pkgs/development/python-modules/python-barcode')
-rw-r--r--pkgs/development/python-modules/python-barcode/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/python-barcode/default.nix b/pkgs/development/python-modules/python-barcode/default.nix
index 165cb5cc5d27..5d64f933b691 100644
--- a/pkgs/development/python-modules/python-barcode/default.nix
+++ b/pkgs/development/python-modules/python-barcode/default.nix
@@ -23,7 +23,7 @@ buildPythonPackage rec {
setuptools-scm
];
- passthru.extras-require = {
+ passthru.optional-dependencies = {
images = [
pillow
];
@@ -38,7 +38,7 @@ buildPythonPackage rec {
checkInputs = [
pytestCheckHook
- ] ++ passthru.extras-require.images;
+ ] ++ passthru.optional-dependencies.images;
pythonImportsCheck = [ "barcode" ];