Merge pull request #298681 from SuperSandro2000/pyzbar-dev

python311Packages.pyzbar: don't propagate library with dev dependencies
This commit is contained in:
Sandro 2024-03-31 21:10:00 +02:00 committed by GitHub
commit b0cb3b101e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -20,7 +20,9 @@ buildPythonPackage rec {
sha256 = "8IZQY6qB4r1SUPItDlTDnVQuPs0I38K3yJ6LiPJuwbU=";
};
propagatedBuildInputs = [ zbar pillow numpy ];
buildInputs = [ zbar ];
propagatedBuildInputs = [ pillow numpy ];
nativeCheckInputs = [ pytestCheckHook ];